Pues tengo un formulario y kiero ponerlo con un formato "bonito".
En Firefox se ve mu bien, pero en IE es un "churro"... el problema es el tamaño de cada campo "input" ke varia de un navegador a otro... Como puedo solucionarlo?
Podeis verlo en
http://thubam.mybesthost.com/cosas/form.htm (justo debajo del banner de publicidad
)
EL codigo es
Cita: <style type="text/css">
.form{
width: 800px;
border: 1px solid #6C6C6C;
}
.form input{
font-family: Verdana;
font-size: 12pt;
font-style: normal;
color: #000000;
line-height: 14pt;
text-decoration: none;
background-color: #FFFFFF;
border: 0px;
border-left: 1px solid #6C6C6C;
border-right: 1px solid #6C6C6C;
}
</style>
Cita: <div class="form">
<input name="" type="text" size="10" maxlength="10"><input name="" type="text" size="15" maxlength="15"><input name="" type="text" size="44" maxlength="44"><input name="" type="text" size="20" maxlength="20">
</div>