首页 > 代码库 > [CSS]解决父子元素margin-top重叠问题
[CSS]解决父子元素margin-top重叠问题
问题代码:
<div id="father" style="background:#eee;">
<div id="son" style="margin-top:50px;">son</div>
</div>
方法一:
父元素设置overflow:hidden
<div id="father" style="background:#eee;overflow:hidden;">
<div id="son" style="margin-top:50px;">son</div>
</div>
方法二:
父元素设置border-top
<div id="father" style="background:#eee;border-top:1px solid transparent;">
<div id="son" style="margin-top:50px;">son</div>
</div>
方法三:
父元素设置padding-top
<div id="father" style="background:#eee;padding-top:1px;">
<div id="son" style="margin-top:50px;">son</div>
</div>
方法四:
父子元素间增加一个inline元素
<div id="father" style="background:#eee;">
<div id="son" style="margin-top:50px;">son</div>
</div>
[CSS]解决父子元素margin-top重叠问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。