How wide is the default `<body>` margin?

前端 未结 2 2155
梦谈多话
梦谈多话 2020-11-21 04:51

What’s the default margin that HTML sets for its tag? I noticed that there’s some automatic margin, but I’m wondering if anyone knows

2条回答
  •  迷失自我
    2020-11-21 05:11

    According to W3School's CSS reference, the default properties and values for a body tag are,

    body{ display : block; margin : 8px; }
    

    And one can quickly get the computed details of any element by accessing the Computed Pane in the Chrome Dev tools.

提交回复
热议问题