gpt4 book ai didi

html, body 高度 100%

转载 作者:太空宇宙 更新时间:2023-11-03 21:47:55 25 4
gpt4 key购买 nike

关于容器的 div 有问题。它的高度是100%,因为我想让div占据header div之后的整个宽度和高度。问题是现在我不滚动以显示全文。

我们还希望能够在平板电脑和智能手机上滚动显示文本。

感谢您的帮助。

<div class='header'>
<div class='header-container'>

</div>
</div>
<div class='container-wrapper'>
<div class='container-about'>
<div class='about-text'>
text comes here.....
........
</div>
</div>
</div>

链接:http://ttest11234.librax.net/index.html

CSS:

* {
margin: 0 auto;
padding: 0;
}

html, body {
height: 100%;
overflow: hidden;
}

body {
font-size: 12px;
line-height: 1.5;
background: #000;
font-weight: 400;
}

.header {
top: 0px;
left: 0px;
width: 100%;
height: 100px;
position: fixed;
background: gray;
opacity: 0.8;
}

.header-container {
width: auto;
height: 100px;
margin: 0 10% 0 10%;
text-align: center;
}

.container-wrapper {
width: 100%;
height: 100%;
}

.container-about {
margin: 100px auto;
padding-bottom: 2%;
width: 100%;
height: 100%;
background: #FFF;
position: relative;
}

.container-about h3 {
padding: 0 10% 5% 10%;
font-family: 'Verdana', sans-serif;
font-size: 12px;
line-height: 150%;
font-weight: 400;
}

最佳答案

添加overflow: scroll propertycontainer-about classcontainer-wrapper class div

.container-about {
background: none repeat scroll 0 0 #FFFFFF;
height: 100%;
margin: 100px auto;
overflow: scroll;
padding-bottom: 2%;
position: relative;
width: 100%;
}

关于html, body 高度 100%,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19399237/

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