我創建了一個網頁圖像填充屏幕100%。
但是,發生了問題。
我想填補了圖片的網頁上,如下圖所示:
HTML和CSS背景URL圖像壓縮
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#section
{
margin-top:240px;
margin-left:140px;
padding:10px;
text-align:center;
}
#top-slogan
{
width:100%;
height:953px;
background: url('background.png') center;
}
#top-header
{
z-index:100;
position:absolute;
width:100%;
height:133px;
}
</style>
</head>
<body>
<div id="top-slogan" class="wrapper">
<div id="top-header" class="section">
</div>
</div>
</body>
</html>
結果出來了,也存在一些問題。
沒有被填滿,圖像被重複。
我想要一個解決方案。
我想刪除 「這部分」:
謝謝!完善! –
不客氣:) –