html – 为什么顶部div的margin-top将适用于“?

前端之家收集整理的这篇文章主要介绍了html – 为什么顶部div的margin-top将适用于“?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在这里我发贴了一个演示 http://jsfiddle.net/LxYMv/1/.

正如你可以看到< body>获得margin-top:从顶部div为10px,因此< html>的黑色背景泄漏出来.这是不是意味着我不能给顶端的积分?

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <style>
            html{color:#000;background:#FFF}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,select,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,dfn,em,optgroup,option,strong,var{font:inherit}del,ins{text-decoration:none}li{list-style:none}caption,th{text-align:left}h1,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:baseline}sub{vertical-align:baseline}legend{color:#000}
            html{background:black}
            body{background:white}
        </style>
    </head>
    <body>
        <div style="margin-top:10px;background:red;height:100px">Here the top div begins</div>
        <div style="height:800px">A long long div</div>
    </body>
</html>

解决方法

这叫做 margin collapsing.

当具有边距的元素在没有填充或边框的元素内时,边距将应用于父元素之外,而不是在子元素和父边缘之间.

这种行为的基本原因是边距指定元素之间的最小差异,而不是元素周围的距离,如padding指定元素内容周围的距离.

猜你在找的HTML相关文章