panthro
panthro

Reputation: 24089

No margin on body

My body has a margin of 8px yet in my css I have:

body {    
    margin: 0 !important;
    padding: 0 !important;
}

Why are the styles not being adhered to? The CSS file is being loaded correctly, I have checked.

<!DOCTYPE html>
<html>
    <head>
        <link rel="stylesheet" href="/styles.css" />
    </head>
    <body id="page-name">
        <div id="drag-overlay"></div>
        <h1>Title</h1>
    </body>
</html>

Upvotes: 0

Views: 125

Answers (1)

Lee
Lee

Reputation: 58

Have you tried this

html, body {    
     margin: 0 !important;
     padding: 0 !important;
}

Upvotes: 1

Related Questions