margin-top塌陷解决方法

Posted xtxdm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了margin-top塌陷解决方法相关的知识,希望对你有一定的参考价值。

解决办法:
1.外部父级盒子加一个边框
2.外部父级盒子设置overflow:hidden
3.使用伪元素类
示例如下:
    <style>
.con{
width: 300px;
height: 300px;
background-color: gold;
border: 1px solid black; /*第一种办法*/
/*overflow: hidden;!*第二种办法*!*/

}
/*第三种办法 外部的盒子使用伪元素类 常用*/
/*.clearfix:before{*/
/* content: "";*/
/* display: table;*/
/*}*/
.box{
width: 200px;
height: 100px;
background-color: green;
/*此处的margintop作用在了父级的.con上 是个bug */
/*解决办法:
1.外部父级盒子加一个边框
2.外部父级盒子设置overflow:hidden
3.使用伪元素类
*/
margin-top: 100px;
}
</style>
</head>
<body>
<div class="con clearfix">
<div class="box">

</div>
</div>
</body>



以上是关于margin-top塌陷解决方法的主要内容,如果未能解决你的问题,请参考以下文章

margin-top塌陷

margin-top塌陷问题

3.1 margin-top塌陷

margin塌陷现象(即在内层设置margin-top无效的解决办法)

margin塌陷问题及解决

常见问题的解决方法