HTML 布局的高度问题

85V)G}CHB]ZU23JDXSY@]%V.png

为什么h2的高度是0?
h2 .box1 {

        float:left;
        font-weight:bold;
        border-bottom:5px solid red;
        width:100px;
    }
    h2 .box2{
        float:right;
        display:block;
        height:100%;
        width:100px;
    }
    .box2::after {
        content:"";
        display:block;
        clear:both;
        height:0px;
    }
    h2 {
        border-bottom:5px solid black;
        margin-bottom:30px;
    }
    
<h2>
    <span class="box1">公益行动</span>
    <a class="box2" href="###">more</a>
</h2>
明明设置了清除浮动?
为什么这样?
阅读 2.2k
2 个回答

伪元素clear:both清除浮动不是在box2里,你要放h2,h2::after。

h2::after {
   content:"";
   display:block;
   clear:both;
}
    
或
<span class="box1">公益行动</span>
<a class="box2" href="###">more</a>
<table style="clear: both"/>
        
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题