Ver Mensaje Individual
  #12 (permalink)  
Antiguo 13/03/2008, 17:58
Avatar de hackteam
hackteam
 
Fecha de Ingreso: diciembre-2007
Mensajes: 67
Antigüedad: 16 años, 2 meses
Puntos: 0
Re: Redondear tags de formulario

JOjojoJOjojOJojoJOjO Lo resolvi de una forma mucho mas sencilla :)

.redondear{
-moz-border-radius: 15px;
background-color: rgb(255, 255, 255);
border : 1px solid #000000;
font-family : Arial, Verdana, Helvetica, sans-serif;
font-size : 12px;
padding-left : 5px;
padding-right : 5px;
}

Código:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>CSS Example</title>

<style type="text/css">

.redondear{
-moz-border-radius: 15px;
background-color: rgb(255, 255, 255);
border : 1px solid #000000;
font-family : Arial, Verdana, Helvetica, sans-serif;
font-size : 12px;
padding-left : 5px;
padding-right : 5px;
}
</style>
</head>

<body>
<span id="boton">
<div class="inputleft"></div>
<input name="usuario" class="redondear" maxlength="50" size="38" type="text">
<div class="inputright"></div>
</span>
<br>
</body>
</html>
GRACIAS! un saludo gracias por contestar! :)