Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/04/2014, 12:32
robertty55
 
Fecha de Ingreso: abril-2014
Mensajes: 37
Antigüedad: 10 años
Puntos: 2
Respuesta: caja de texto

Debes seleccionar tu etiqueta input, y modificarle el Alto y Ancho con las propiedades Width y Height.

Ejemplo:

Código HTML:
Ver original
  1. <!doctype html>
  2. <meta charset="utf-8">
  3. <title>Documento sin título</title>
  4.     #texto{
  5.         width:200px;
  6.         height:30px;
  7.     }
  8. </head>
  9.     Texto&nbsp;<input type="text" id="texto" name="texto">
  10. </body>
  11. </html>