2
讓我們考慮一個元素#top
。我希望它的高度達到頁面的100%,但從底部減少10em。我無法弄清楚如何去做。請幫忙。如何將HTML元素的高度設置爲{100% - 從底部開始的10em}
HTML
<div id="top"></div>
<div id="bottom"></div>
CSS
html, body {
height: 100%;
padding: 0;
margin: 0;
font-size: 100%;
}
#top {
width: 100%;
height: 70%;
background-color: red;
}
#bottom {
position: absolute;
bottom: 0;
margin-left: 10%;
width: 100%;
height: 10em;
background-color: #000000;
}
參見http://codepen.io/anon/pen/jEqYMK(爲了說明,我已示出了一個多種元素,#bottom
)。
非常感謝! calc()似乎也有很好的瀏覽器支持。關於「職位:絕對」的長篇故事,但在這裏顯然不重要。我可以(也會)在4分鐘後顯然接受你的回答。 – 2014-12-13 05:42:01
@KayaToast沒問題,很高興幫助你:) – 2014-12-13 05:42:47