gpt4 book ai didi

html - 将 HTML 高度设置为 100% 可以消除滚动

转载 作者:太空宇宙 更新时间:2023-11-04 08:23:14 25 4
gpt4 key购买 nike

我不明白为什么这不起作用。

我需要将 HTML 和 body 的高度设置为 100% 以设置页面内三行的高度,但是当我这样做时,它消除了滚动,特别是在移动设备上,但即使在某些浏览器窗口大小时调整大小。

    html, body {
height: 100%;
display:block;
margin: 0;
padding: 0;
background-color: #f7f7f7;
overflow:scroll;
}
.row1 {height:15%;} // header
.row2 {height:70%;} // body
.row3 {height:15%;} // footer
  <html>
<body>
<div class="row1"> ...needs to be 15% height </div>
<div class="row2"> ...needs to be 70% height </div>
<div class="row3"> ...needs to be 15% height </div>
</body>
</html>

如果我删除 HTML 上的 100%,则页面会滚动,但需要基于百分比的高度不起作用。任何有关如何解决该问题的帮助将不胜感激。

我通过谷歌搜索和查看我在其他元素上的代码找到的所有帖子都没有为这个问题提供解决方案。

最佳答案

html, body {
height: 100vh;
width: 100%;
margin: 0;
padding: 0;
background-color: #f7f7f7;
overflow:scroll;
}
.container{
height: 100%;
width: 100%;
display:inline-block;
}
.row1 {height:15%;width: 100%;display:inline-block;}
.row2 {height:70%;width: 100%;display:inline-block;}
.row3 {height:15%;width: 100%;display:inline-block;}
 <html>
<body>
<div class="container">
<div class="row1"> ...needs to be 15% height </div>
<div class="row2"> ...needs to be 70% height </div>
<div class="row3"> ...needs to be 15% height </div>
<div>
</body>
</html>

添加了样式元素和 div 容器并获取注释//

关于html - 将 HTML 高度设置为 100% 可以消除滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45378248/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com