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
margin
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.