Apologies for posting two questions in one day, this site is driving me insane. I have a simple navigation table that displays perfectly in firefox, but when I pull it up in IE there is an extra 2cm at the bottom between the last row of the table and the div border. I've been tinkering for half an hour and have no idea how to get rid of it. The relevant code is below....
CSS
and the html
CSS
Code:
#logbar
{
margin-top: 6px;
width: 788px;
height: auto;
background-color: #ffffff;
border: 1px;
border-style: double;
border-color: #e1e1e1;
padding: .05cm;
}
and the html
Code:
<div id="logbar"><form method="post" action="xxx.php">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="12.5%" bgcolor="#E1E1E1" height="22px" align="center" valign="center" border="0"><span class="arial9red"><a href="xxx.php">Forgot Password?</a></span></td>
<td width="12.5%" bgcolor="#ab2927" height="22px" align="center" valign="center" border="0"><span class="arial9white">Email Address</span></td>
<td width="12.5%" bgcolor="#ab2927" height="22px" align="center" valign="center" border="0"><span class="arial9white"><!-- <input type="text" name="emadd" size="16" background-color="#e1e1e1"> --></span></td>
<td width="12.5%" bgcolor="#ab2927" height="22px" align="center" valign="center" border="0"><span class="arial9white">Password</span></td>
<td width="12.5%" bgcolor="#ab2927" height="22px" align="center" valign="center" border="0"><span class="arial9white"><!-- <input type="text" name="password" size="16" background-color="#e1e1e1"> --></span></td>
<td width="12.5%" bgcolor="#E1E1E1" height="22px" align="center" valign="center" border="0"><span class="arial9red">submit button</td>
<td width="12.5%" bgcolor="#E1E1E1" height="22px" align="center" valign="center" border="0"><span class="arial9red"><span class="arial9red"><a href="xxx.php">New User Registration</a></span></td>
<td width="12.5%" bgcolor="#E1E1E1" height="22px" align="center" valign="center" border="0"><span class="arial9red"><span class="arial9red">xxx button here</span></td>
</tr></table></form></div>