Estoy tratando de que un input type="text" y un input type="submit" tengan el mismo ancho.
Para ello hago tal que así:
Código:
.Form { width:160px; }
Código:
Pues bien, con eso hay una diferencia en el ancho.A: <input class="Form" name="A" type="text"> <input class="Form" name="B" type="submit" value="B">
Ahora bien, si pongo:
Código:
entonces ya tiene el mismo ancho, pero... ¡lo quiero con borde!.Form { width:160px; border:0; }
Gracias.