CSS 内容不随内容增加
我有一个 CSS 问题,我希望这个 div 随着越来越多的内容填充而自动垂直扩展。我认为在样式中省略它的高度设置就可以做到这一点,但它似乎并没有解决它。我的CSS
.box{
-moz-border-radius: 15px 15px 15px 15px;
background-color:#433B39;
background-image:none;
color:white;
display:block;
margin-top:20px;
padding-left:16px;
padding-right:16px;
width:925px;
}
I have a CSS Question I want this div to automatically expand vertically as more and more content fills it. I thought that omitting it's height setting in the style would do so but it hasn't seemed to fix it. My CSS
.box{
-moz-border-radius: 15px 15px 15px 15px;
background-color:#433B39;
background-image:none;
color:white;
display:block;
margin-top:20px;
padding-left:16px;
padding-right:16px;
width:925px;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否将内容浮动在该 div 内?如果是这样,那么它就不会扩展以适应它们,您需要为此在浮动内容后面放置一个清除 div。
Are you floating the content inside of that div? If so, then it won't expand to fit them, you need to put a clearing div after the floating content for this.
使用 auto:height 。您还可以提及某个值的 min-height 以保持最小高度
ex :
您是否尝试为外部容器设置 float:left ?
use auto:height .You may also mention min-height to some value to maintain a minimum height
ex :
Did you try with setting float:left for the external container?