這是我在Stack上的第一個問題,我希望有人能幫助我。高度不能在身體骨架上工作
我與我的骷髏建立的頁面有問題。問題是我無法將「高度」設置爲100%。我希望我的頁腳始終位於底部,這樣我的頁面的其餘部分就可以延伸到完整的窗口。我怎麼做?
下面是代碼:
html {
font-size: 62.5%;
min-width: 100%;
width: 100%;
max-width: 100%;
min-height: 100%;
height: 100%;
max-height: 100%;
}
body {
font-size: 1.5em;
line-height: 1.6;
font-weight: 400;
font-family: 'Lato', sans-serif;
color: #FFD6ED;
background-color: #1D003E;
min-width: 100%;
width: 100%;
max-width: 100%;
min-height: 100%;
height: 100%;
max-height: 100%;
}
HTML是非常標準:
<html>
<body>
<header>
<div class="container">
<div class="rows">
<div class="twelve columns">
Content
</div>
</div>
</div>
</header>
</body>
</html>
這一切都不是工作。我也嘗試設置高度:100vh,但是再次沒有運氣。我在這裏閱讀了很多主題,所有發佈的解決方案都沒有改變。
當我加入下列: 體{ 頂部:0; bottom:0; left:0; right:0; 身高:500em; } 一個滑塊出現了,我可以滾動頁面,但
仍然不是整頁。 – grhu