在父类里不包括最后一位子类的margin-bottom

来源:互联网 发布:明星字体软件 编辑:程序博客网 时间:2024/06/05 01:17

<divclass="main">
    <divclass="cot">wusuiw</div>
    <divclass="cot">cdf</div>
</div>

<style type="text/css">    .cot{        margin-top: 20px;        margin-bottom: 30px;    }   </style>
如图所示:

解答:因为网页的内容是从上而下慢慢堆叠的,margin不扩大父类的内容,所以margin-bottom不在父类里面,解决方法:改为padding-botttom或在父类加overflow:hidden或加设置border值或加float浮动(撑开父类);

阅读全文
0 0
原创粉丝点击