Hallo zusammen,
ich habe ein Problem:
und zwar will ich ein Formular erstellen, bei dem das Input und das Submit direkt nebeneinander in der gleien Höhe sind.
Dies funktioniert überall, nur nicht im FF3!
Kann mir hier evtl jemand helfen?
Danke schon einmal!
<style type="text/css">
form,input {
border:o;
margin:0;
padding:0;
}
input.quant {
height:30px;
width:100px;
background-color:red;
border:1px solid black;
}
input.add {
height:30px;
width:100px;
background-color:red;
border:1px solid black;
}
</style>
<form><input class="quant"><input type="submit" value="send" class="add"></form>