Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/02/2011, 17:26
d3xf4ult
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: input con esquinas redondeadas

Prueba con esto:

Código HTML:
<html>
<style type="text/css">
    input {
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        border: 1px solid #000000;
        padding: 0 4px 0 4px;
     }
</style>

<body>

    nombre<input type="text"/>

</body>
</html>