宽度是自动调整的,但如果我将高度设置为除px金额以外的任何值,则横幅消失。我玩过最小高度和溢出,但唯一重要的是高度为px。
提前致谢。
STOP SLAVE; START SLAVE;
答案 0 :(得分:0)
为html和body标签指定高度,然后将div高度设为100%,如下所示:
<style>
html,body
{
height:100%;
width:100%;
}
#banner {
background:url('.png');
width:100%;
height:100%;
background-size:100%;
background-repeat: no-repeat;
margin-left: auto;
margin-right: auto;
}
<style>