Home > Software engineering >  Margin at top of body
Margin at top of body

Time:08-30

I have this code only (no CSS or more HTML).

When I load the html file in my browser there seems to me a 21px margin at the top (see the image link if you don't understand what I mean).

I know that the body element normally has an 8px margin by default, so I removed the margin by adding this code through the developer tools. margin: 0px;

Even after adding that code, I still get the 21px margin at the top of the page.

I don't know what to do, so if you can please help me, that would me great.

body {
  margin: 0px;
}
<body>
  <div id="unit-type">
    <h1>Converter</h1>
  </div>
</body>

CodePudding user response:

You can create a file to reset the page's css, and import it into your html an example of reset.css would be:

    html, body, div, span, applet, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    a, abbr, acronym, address, big, cite, code,
    del, dfn, em, img, ins, kbd, q, s, samp,
    small, strike, strong, sub, sup, tt, var,
    b, u, i, center,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, embed, 
    figure, figcaption, footer, header, hgroup, 
    menu, nav, output, ruby, section, summary,
    time, mark, audio, video {
        margin: 0;
        padding: 0;
        border: 0;
        font-size: 100%;
        font: inherit;
        vertical-align: baseline;
    }
    /* HTML5 display-role reset for older browsers */
    article, aside, details, figcaption, figure, 
    footer, header, hgroup, menu, nav, section {
        display: block;
    }
    body {
        line-height: 1;
    }
    ol, ul {
        list-style: none;
    }
    blockquote, q {
        quotes: none;
    }
    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }
    table {
        border-collapse: collapse;
        border-spacing: 0;
    }

With this css all default formatting that the browser puts will be removed

CodePudding user response:

* {
  margin: 0px;
  padding:0px;
}
<body>
  <div id="unit-type">
    <h1>Converter</h1>
  </div>
</body>

CodePudding user response:

Consider inspecting elements to determine which has the default margin or padding applied and replace * with the class, id, or element.

Using * resets default padding and margin for ALL elements (traditionally not best practice)

*{
margin: 0;
padding: 0;
}
  • Related