Cita:
Iniciado por JavierB Hola
neodani
Haciendo una sencilla prueba:
Código CSS:
Ver original<html>
<head>
<style type="text/css">
#direccion {background:green; width:200px}
.estilo1 {background:red; width:50px}
</style>
</head>
<body>
<input type="text" tabindex="5" maxlength="40" size="25" value="" id="direccion" class="estilo1" name="direccion"/>
</body>
</html>
Parece ser que sí pueden ponerse los dos y que prevalece el
id
Saludos,
Muchas gracias, es cierto y se complementan bien...
Código HTML:
Ver original#direccion {background:green; }
.estilo1 {color:red; width:200px}
<input type="text" tabindex="5" maxlength="40" size="25" value="" class="estilo1" id="direccion" name="direccion"/>
Salu2!