i want to get rid of the white margin around my website . I have set on #body #header and #html margin:0; and padding:0; Can someone please help
Here is the HTML code:
<DOCTYPE html>
<html>
<header>
<link href="CSS/stylesheet.css" rel=stylesheet>
</header>
<body>
<div id="bannertop"></div>
</body>
</html>
And the CSS:
#html{
margin: 0 !important;
padding: 0 !important;
}
#header{
margin: 0 !important;
padding: 0 !important;
}
#body{
margin: 0 !important;
padding: 0 !important;
}
#bannertop{
height: 200px;
width: 100%;
background-color: cadetblue;
margin-top:0px;
}
Here is a picure of the website Website