Hi folks 
I have a strange problem with whitespace at the bottom of a background image. I've tried setting line-height: 0; and display: block; on the div but can't seem to figure out whats causing it. Its happening in both Firefox & IE so its not like its an annoying IE issue
I don't suppose anyone has any ideas and could lend a hand?
Thanks
index.htm
styles.css


I have a strange problem with whitespace at the bottom of a background image. I've tried setting line-height: 0; and display: block; on the div but can't seem to figure out whats causing it. Its happening in both Firefox & IE so its not like its an annoying IE issue

I don't suppose anyone has any ideas and could lend a hand?
Thanks

index.htm
Code:
<div id="wrapper">
<div id="header"><a href="http://www.test.net/" title="Test"><img src="graphics/logo.gif" alt="Test" width="170px" height="79px" class="noborder" /></a></div>
<div id="content">
test, test, test, test, test, test, test, test, test, test, test, test, test, test, test,
test, test, test, test, test, test, test, test, test, test, test, test, test, test, test,
test, test, test, test, test, test, test, test, test, test, test, test, test, test, test,
test, test, test, test, test, test, test, test, test, test, test, test, test, test, test,
</div>
<div id="bottomCurve"></div>
</div><!--end of wrapper-->
styles.css
Code:
#wrapper
{
margin: 40px auto 0 auto;
padding: 0;
width: 770px;
font: normal 10pt arial, helvetica, sans-serif;
color: #000000;
}
#header
{
margin: 0;
padding: 0;
height: 79px;
font: normal 10pt arial, helvetica, sans-serif;
color: #000000;
}
#content
{
margin: 0;
padding: 0;
height: 500px;
font: normal 10pt arial, helvetica, sans-serif;
background: #ffffff;
color: #000000;
}
#bottomCurve
{
margin: 0;
padding: 0;
width: 770px;
height: 17px;
font: normal 10pt arial, helvetica, sans-serif;
background: #ffffff url('graphics/bottomCurve.gif');
color: #000000;
}