newmand2
10-04-2004, 04:35 PM
All my <form> tags and <li> tags seem to have an extra line of transparent space below them, but only in I.E.
Is this a regular occurence? How can I get rid of it?
CSS:
#loginbar {
background-color: #B57B46;
width: auto;
padding: 1px;
font: bold 10px Arial, Helvetica, sans-serif;
color: #000000;
margin-bottom: 1px;
text-align: right;
height: 16px;
font-weight: bold;
}
input.loginbar {
background: #cccccc;
color: #000000;
border: 1px solid #000000;
font: bold 10px Arial, Helvetica, sans-serif;
height: 14px;
width: 50px;
vertical-align: middle;
}
HTML:
<div id="loginbar">
<form name="login" method="post" action="index.php?process=login">
<input name="u" type="text" class="loginbar" />
<input name="p" type="password" class="loginbar" />
<input name="l" type="submit" class="loginbar" value="Login" />
</form>
</div>
Thanks!
Is this a regular occurence? How can I get rid of it?
CSS:
#loginbar {
background-color: #B57B46;
width: auto;
padding: 1px;
font: bold 10px Arial, Helvetica, sans-serif;
color: #000000;
margin-bottom: 1px;
text-align: right;
height: 16px;
font-weight: bold;
}
input.loginbar {
background: #cccccc;
color: #000000;
border: 1px solid #000000;
font: bold 10px Arial, Helvetica, sans-serif;
height: 14px;
width: 50px;
vertical-align: middle;
}
HTML:
<div id="loginbar">
<form name="login" method="post" action="index.php?process=login">
<input name="u" type="text" class="loginbar" />
<input name="p" type="password" class="loginbar" />
<input name="l" type="submit" class="loginbar" value="Login" />
</form>
</div>
Thanks!