I'm having an issue with my header background image not lining up exactly to the top of the browser. There is a gap between the header image and the top of the browser, showing the background color. I want the header to extend all the way up to the top of the screen without displaying any background color.
/* CSS Document */
html, body {
margin: 0;
padding: 0;
}
body {
font: 12px/16px Verdana, Geneva, sans-serif;
color: #000;
background-color:#426fac;
}
/*** header
****************************************/
#header {
background: url(images/header-bg.png) no-repeat center top;
overflow: hidden;
}
Does anyone have any ideas on how to fix this issue?