Ver Mensaje Individual
  #7 (permalink)  
Antiguo 05/11/2013, 11:34
faillure
 
Fecha de Ingreso: agosto-2013
Mensajes: 46
Antigüedad: 10 años, 8 meses
Puntos: 12
Respuesta: como pintar media caja de un textarea

¿el border-radius sería una novelería?

Código CSS:
Ver original
  1. label {
  2.   height: 25px;
  3.   width: 150px;
  4.   border: 3px solid #000;
  5.   border-radius: 50% 50% 0 0;
  6.   position: relative;
  7. }
  8. input {
  9.   height: inherit;
  10.   width: inherit;
  11.   position: relative;
  12.   top: -4px;
  13.   border: 0 none;
  14.   background: #fff;
  15. }

Código HTML:
Ver original
  1. <label for='text'>
  2. <input type="text" name="texto" id='text'>