|
Pozdrav svima! Treba mi mala pomoc oko problema koji imam sa formom u IE.
<form method="get" action="#" class="login">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td>Username:</td>
<td class="left"><input type="text" name="username" id="username" size="15" /></td>
</tr>
<tr>
<td>Password:</td>
<td class="left"><input type="password" name="pass" id="pass" size="15" /></td>
</tr>
<tr>
<td colspan="2"><input type="image" value="submit" src="images/login.jpg" width="118px" height="23px" class="submit"></td>
</tr>
<tr>
<td colspan="2"><a href="#" class="log_link">Forgot Your Password?</a></td>
</tr>
<tr>
<td colspan="2"><a href="#" class="log_link">Lost Account?</a></td>
</tr>
</table>
</form>
#header table {
float: left;
}
#header table td.left {
text-align: left;
}
#header form {
color: #fe9029;
text-align: center;
font-size: 13px;
font-family: Arial;
}
#header input {
background-color: #ffffff;
border: 0;
margin-bottom: 2px;
}
#header input.submit {
margin-top: 4px;
}
#header a.log_link {
text-decoration: none;
color: #fe9029;
font-family: Arial;
font-size: 10px;
}
#header a.log_link:hover {
text-decoration: underline;
}
Desava se to da su input type text i password namesteni na size="15"...U IE input type="password"....to jest ta celija je manja od Input type="text",i sta god ja radio nemogu ih izjednaciti...
U firefoxu i mozilli se pravilno pokazu
|