gpt4 book ai didi

html - 将 div 拉伸(stretch)到最大尺寸

转载 作者:行者123 更新时间:2023-11-28 03:41:25 30 4
gpt4 key购买 nike

我的CSS:

#main {
display: block;
top: 0px;
bottom: 0px;
height: auto;
margin-top: 55px;
max-width: 100%;
overflow: scroll;
position: absolute;
}

#content {
background-color: #fff;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-border-radius: 5px;
border: 1px solid #eee;
-moz-box-shadow: inset 0 0 5px #000;
-webkit-box-shadow: inset 0 0 5px #000;
box-shadow: inset 0 0 5px #000;
margin: 5px;
}

我想要什么: enter image description here

我得到的: enter image description here

红色 = 绝对标题
白色 = #main 带有“蓝色”滚动条
Green = #content 边框与其中的文本。

我想这很容易解决,但我尝试了很长时间后仍然无法解决:P

更新/简化的 jsfiddle: http://jsfiddle.net/YAgW2/9/

最佳答案

你的 CSS 应该是:

#main {
display: block;
top: 0px;
bottom: 0px;
height: auto;
margin-top: 55px;
max-width: auto;
overflow: scroll;
position: absolute;
}

#content {
background-color: #fff;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-border-radius: 5px;
border: 1px solid #eee;
-moz-box-shadow: inset 0 0 5px #000;
-webkit-box-shadow: inset 0 0 5px #000;
box-shadow: inset 0 0 5px #000;
margin: 5px;
width:auto;
}

关于html - 将 div 拉伸(stretch)到最大尺寸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10684312/

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