Which web browsers apply a default CSS margin/padd

2019-02-20 14:30发布

What web browsers apply a default CSS magin and/or padding on the body element by default?

I know Google Chrome applies a 8px margin, and I've heard that other browsers have a default padding as well.

Thanks!

2条回答
Lonely孤独者°
2楼-- · 2019-02-20 14:45

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.

查看更多
趁早两清
3楼-- · 2019-02-20 15:06

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>
查看更多
登录 后发表回答