Which web browsers apply a default CSS margin/padding on the body element by default?

[亡魂溺海] 提交于 2019-12-01 12:08:59

Most browsers have default margin for body element. IE9 gives 15px vertical and 10px horisontal, Opera 11 gives 8px, yet this can and does change between versions, so you realy should incorporate css reset in your stylesheets, be it home-brew padding:0;margin:0;, Eric Meyer's or YUI.

wsanville

Just use a simple test page, like this one, and try all the browsers you're interested in. From what I've seen, browsers seem to have a non-zero default for margin, and 0 for padding.

<!doctype html>
<html>
  <head>
    <title>Default padding on body tag</title>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" type="text/javascript" language="javascript"></script>
    <script type="text/javascript">
        $(function(){
            $('#top').text($('body').css('margin-top'));
        });
    </script>
  </head>
  <body>
    margin-top: <span id="top"></span>
  </body>
</html>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!