How to remove the space above this navigation bar that I created?
http://gyazo.com/b41271cad8d41c08c52ff26b1f1cab9e
I have a StackOveflow search for this answer, but I cannot find one that seems to fix my problem. I set html, body padding / margin to 0, and also reset all other elements. Does anyone have any advice?
<nav id="header">
<div class="home-header">
<a href="#"><h1> testing this </h1></a>
</div>
</nav>
Here is CSS
#header {
position: relative;
margin: 0 auto 0;
padding-top: 0px;
background-color: $main-color;
}
kevin source
share