搜索

首页  >  问答  >  正文

html - css元素的高度怎么自动扩充到100%

<p class="box">
    <p class="a"></p>
    <p class="b"></p>
</p>

box,a,b高度都根据内容增加,b的高度比a高,于是撑大box,这时a的高度怎么能和b或者box一样呢

天蓬老师天蓬老师2823 天前717

全部回复(8)我来回复

  • 迷茫

    迷茫2017-04-17 11:56:28

    雷雷 雷雷

    回复
    0
  • 阿神

    阿神2017-04-17 11:56:28

    100%是根据父级高度定的

    回复
    0
  • 伊谢尔伦

    伊谢尔伦2017-04-17 11:56:28

    a,b是浮动的,要想让a,b平行 ,是这个意思吗

    要是高度无法固定的话,可以用js动态设置a.style.height = b.style.height

    回复
    0
  • 迷茫

    迷茫2017-04-17 11:56:28

    http://jsbin.com/ruqebozetu/edit?html,css,output 你看看是否是你想要的效果.JQ做的.

    回复
    0
  • 天蓬老师

    天蓬老师2017-04-17 11:56:28

    弹性盒

    回复
    0
  • PHP中文网

    PHP中文网2017-04-17 11:56:28

    html,body,box,a,b{
        height:100%
    }

    父元素设置高度100%

    回复
    0
  • 巴扎黑

    巴扎黑2017-04-17 11:56:28

    .box{
                width:500px;
                border:1px solid #ccc;
                position: relative;
            }
            .a{
                width:40%;
                height:100%;
                border:1px solid #f8d5d8;
                position: absolute;
                top:0;
                bottom:0;
            }
            .b{
                width:40%;
                min-height:300px;
                margin-left:41%;
                border: 1px solid #008080;
            }
            
        
    
    • 优点:满足你的题目要求

    • 缺点:1.b的高度必须比a大,比较局限

    • 如果对CSS3的新功能支持较好,建议用flex
      http://www.ruanyifeng.com/blog/2015/07/flex-grammar.html

    回复
    0
  • PHP中文网

    PHP中文网2017-04-17 11:56:28

    我可以理解为css中的等高布局的话,有那么几种方法: http://www.w3cplus.com/css/creaet-equal-height-columns

    回复
    0
  • 取消回复