我有我的「header_main」絕對定位高度爲100%基本覆蓋整個屏幕。在header_main div n中還有另一個div,它也是絕對定位的。我已將「圖標包裝器」div設置爲底部:0;但它不希望定位絕對底部。位置絕對定位的父div的底部的絕對div
<body id="top" class="no-js">
<header id="header_main">
<div class="icon-wrapper"></div>
</header>
</body>
我的CSS:
html, body {
height: 100%;
}
body{
font: 18px/27px $font-stack;
color: $text-color;
-webkit-font-smoothing: antialiased;
font-weight: 300;
}
#header_main{
height:100%;
width:100%;
position: absolute;
background: url('../images/ac-placeholder-img.jpg') no-repeat center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.icon-wrapper {
position:absolute;
height: 254px;
bottom: 0;
vertical-align:bottom;
}
只是一個錯字這裏...不是在我的代碼 –
對不起... :-) –