Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/05/2002, 15:12
bet
 
Fecha de Ingreso: febrero-2001
Mensajes: 292
Antigüedad: 23 años, 2 meses
Puntos: 0
Re: Color de boton en formulario

Para cambiar el estilo de los elementos de un formulario:

Código:
<html>
<head>
<title> Botones </title>
<style type="text/css">
.boton { 
		font-family: Verdana, sans-serif; 
		font-size: 10px; 
		color: #333333; 
		border: 0px #666666 solid; 
		background-color: #f2f2f2; 
		font-weight: bold}
</style>
</head>

<body bgcolor="#FFFFFF">
<input class=boton type=submit value=buscar name="submit"><br>
<input class=boton type="radio" name=""><br>
<input class=boton type="text" name=""><br>

</body>
</html>
<hr noshade size=1><img src="http://www.gograph.com/Images-8712/ClipArt/cat03.gif" height="50" border=0 align="absmiddle"> <font size="2" face="verdana" color="#000000">bet[/CODE]