How can get the div background image to scale to the page size?

淺唱寂寞╮ 提交于 2019-12-11 09:30:00

问题


I am trying to make the background image of the div header scale to the size of the page. Here is the current css:

.Header {
    background-image: url(Images/logo.png);
    height: 160px;
    width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

回答1:


Make the position as absolute of the header and width as 100%

position:absolute;
width:100%;


来源:https://stackoverflow.com/questions/28653177/how-can-get-the-div-background-image-to-scale-to-the-page-size

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!