2
當我把在屏幕上有width:100%
和height:100%
它被通過應該是它下面這樣的內容涵蓋了頂部固定的背景圖像中的div:定格的背景圖像掩蓋了其他內容
但是當我使用的像素值的高度像100px
發生這種情況:
我希望能夠使用width:100%
和height:100%
能夠獲得未被掩蓋的全屏固定背景圖像。
HTML:
<div class="background">
<div class="hero">
<div class="arrow_down">
<a><i class="fa fa-angle-down"></i></a>
</div>
</div>
</div>
CSS:
.background {
position:relative;
top:0;
overflow:hidden;
height:100%;
width:100%;
}
.background .hero {
background-image: url('../images/background.jpg');
background-repeat:no-repeat;
background-size:100% auto;
background-attachment:fixed;
background-position:center top;
width:100%;
height:100px;
}
謝謝!現在正在工作。 –