Ver Mensaje Individual
  #1 (permalink)  
Antiguo 26/08/2005, 13:48
neomix
 
Fecha de Ingreso: julio-2005
Mensajes: 72
Antigüedad: 18 años, 10 meses
Puntos: 0
Pregunta Cambiar estilo de botob con CSS, pero no con una clase

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