hi. im firefox habe ich öfters fehler bei formularen und buttons. während bei den meissten anderen browsern (ie opera safari ect) alle felder schön in einer linie sind, gibts beim firefox eine stufe. woher kommt das, wie mache ich die weg?
html:
<div id="search">
<fieldset id="suche">
<input id="suchfeld" type="text" name="suche" />
<input id="los" type="submit" value="los" />
</fieldset>
<form action="#" method="get">
</form>
</div>
css:
*{
margin: 0;
padding: 0;
font: 11px verdana, helvetica, sans-serif;
color: #414141;
border: 0;
}
#search {
float: right;
margin: 5px 5px 0 0;
}
input#los {
width: 25px;
background: #457DBA;
color: #fff;
height: 17px;
font-size: 10px;
border: 1px #414141 solid;
}
input#suchfeld {
width: 75px;
height: 15px;
border: 1px #414141 solid;
font-size: 10px;
}