html – css height:auto not working

前端之家收集整理的这篇文章主要介绍了html – css height:auto not working前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Why doesn’t the height of a container element increase if it contains floated elements?7个
inner1和inner2 div在外部div中,外部高度仍然为0px,height为auto

如何获得外部div的子元素的高度?

<style>
#outer {
    width:300px;
    height:auto;;
    background:#ccc;    
}
#inner1 {
    float:left;
    width:100px;
    height:100px;
    background:#f00;
}
#inner2 {
    float:left;
    width:100px;
    height:100px;
    background:#0f0; 
}
</style>
<div id="outer">
    <div id="inner1"></div>
    <div id="inner2"></div>
</div>

解决方法

添加溢出:自动到id为外部的div.这将解决您的问题.

Demo

原文链接:https://www.f2er.com/html/224913.html

猜你在找的HTML相关文章