Re: Cambiar la apariencia del INPUT LFZV!
Si quieres que el botón sea distinto al resto de los inputs, lo mejor que puedes hacer es definir el estilo de los inputs y luego hacer un identificador para el botón y definir las caracteristicas de ese identificador. Por ejemplo:
-----------------------------
<html>
<head>
<style> #boton {
color:yellow;
font:normal 9px/14px verdana;
background-color:navy;
border:2px solid black;
}
input{
border:1px solid blue;
font: bold 14px 'Tahoma';
color: white;
background-color: silver;
}
</style>
</head>
<body>
<input type="button" id="boton" value="pulsame!">
<br>
<br>
<input type="text" value="Es distinto">
</body>
</html>
--------------------------------
No sé si me he explicado bien...
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="190" height="51"><param name="bgcolor" value="#0066CC"><param name="movie" value="http://www.webareyou.com/Movie1.swf"><embed src="http://www.webareyou.com/Movie1.swf"></embebed></object> |