問題在畫面的特定可見性,當你進入網站,在頭的圖片隱藏的一部分,某些部分甚至隱藏更多更高(不知道爲什麼?)。放置圖片
你能幫我放置圖片標題下方,使頭部透明(或部分透明的),所以完整的圖片出現在網站上。
這裏是我的代碼: HTML:`
<html lang="ru">
<head>...</head>
<body>
<header>...</header>
<div id="center">
<form>....</form>
</div>
<footer> </footer>
</body>
</html>`
CSS:
html {
height: 100%;
background: url(../img/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body {
margin: 0px;
font-family: sans-serif;
color: white;
width: 100%;
height: 100%;
}
header {
height: 60px;
display: inline-block;
vertical-align: top;
color: white;
width: 100%;
padding-bottom: 20px;
}
什麼頁腳?這是否也應該在背景圖像之前? – BDawg
是的,頁腳應該像標題 – wiaim