body
{
font-size: 71%; /* Resets 1em to 10px */
font-family: Verdana, Arial, Sans-Serif;
background-color: #f4ead7;
margin: 0;
padding: 0;
}
#top
{
position: relative;
background: url(images/topban.png) top repeat-x;
height: 300px;
width: 100%;
}The HTML is...
<body> <div id="top"> </div> </body>
The issue is that in Firefox and IE8 there is a gap between the top of the window and the top of the div.
However, if I put a border command into the CSS declaration (border: 1px solid #f00;) then the top space disappears. I cannot see the fault; can anyone help?
Help
















