Webstatt.org - Community seit 2006 - 2012 (2024?)

firefox formular darstellung

Avatar user-180
02.08.2007 14:25

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;
}

may the force be with you. but mostly with me.
Avatar user-182
03.08.2007 06:11

knall mal ganz stumpf in beide inputs nen vertical-align: middle rein zwinkern

Seid ihr auch schon wix'r? xD
Avatar user-180
03.08.2007 07:17

habs anders gelöst: wenn man beides mal display: block macht und dann noch floatet dann gehts..

may the force be with you. but mostly with me.