如何让 div 背景图片缩放到页面大小?
How can get the div background image to scale to the page size?
我正在尝试使 div 页眉的背景图像缩放到页面大小。这是当前 css:
.Header {
background-image: url(Images/logo.png);
height: 160px;
width: 960px;
margin-left: auto;
margin-right: auto;
margin-top: 20px;
}
将位置设为页眉的绝对位置,宽度设为100%
position:absolute;
width:100%;
我正在尝试使 div 页眉的背景图像缩放到页面大小。这是当前 css:
.Header {
background-image: url(Images/logo.png);
height: 160px;
width: 960px;
margin-left: auto;
margin-right: auto;
margin-top: 20px;
}
将位置设为页眉的绝对位置,宽度设为100%
position:absolute;
width:100%;