所以我非常在意爲什麼我的標題沒有出現,令人驚訝。我嘗試了一切。輸入時我有點搞砸了,但它仍然應該顯示出來。標題不顯示?
在此先感謝。
HTML
<body>
<div class="header">
<div id="logo">
<img src="../Images/logo.png">
</div>
</div>
</body>
</html>
CSS
body {
background-color:#2A2B2D;
margin:0px;
padding:0px;
}
.header {
background-color:#2C2E31
border-bottom:#000000 2px solid;
top repeat-x;
height:182px;
}
什麼是'top repeat-x;'? – Adrift
這條線是什麼'top repeat-x;'應該這樣做? – naththedeveloper
top repeat-x;爲背景顏色:#2C2E31我猜 – underscore