我有一个具有以下 css 属性的主包装器 div:
div#mainWrapper {
margin: auto;
width:70em;
height:100%;
background: url(../images/header.jpg) no-repeat center center fixed;
background-size: cover;
}
我想让整个 div 和它的背景可见,即使 div 本身是空的。
我不想使用position:fixed
或者position:absolute
如果可能的话。