Hola gente
quiero cambiar el estilo de los botones de formulario mediante css, pero sin utilizar una clase, espero su ayuda.
A continuacion es lo que NO quiero hacer
Código HTML:
<style type="text/css">
.boton{
font-size:10px;
font-family:Verdana,Helvetica;
font-weight:bold;
color:white;
background:#638cb5;
border:0px;
width:80px;
height:19px;
}
</style>
<div align="center">
<form name="form1" action="http://www.yahoo.es" target="_blank" method="post">
<input type="text" name="prueba"><br><br>
<input type="submit" value="enviar" class="boton">
</form>
</div>
Gracias