0
我想將圖像放置在頁面的頂部並拉伸到頁面的兩側,高度爲51px。但是,圖像與頁面頂部和頁面兩側之間存在間隙。請你能告訴我我做錯了什麼嗎?在頁面頂部的圖像邊界之間的差距html
#background {
width: 100%;
height: 100%;
position: absolute;
left: 0px;
top: 0px;
z-index: 0;
}
.stretch {
width:100%;
height:100%;
}
#twitter {
background: url(http://maxk.me/test/img/twitterbg.png) repeat;
height: 51px;
width: 100%;
position: fixed;
}
HTML
<html>
<head>
<title>title</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<div id="background">
<img src="...." class="stretch" alt="" />
</div>
<div id="twitter">
</div>
</body>
</html>
@XcodeDev聽這傢伙 – sg3s