Ver Mensaje Individual
  #3 (permalink)  
Antiguo 20/06/2012, 07:07
Avatar de dontexplain
dontexplain
 
Fecha de Ingreso: junio-2012
Mensajes: 536
Antigüedad: 12 años, 7 meses
Puntos: 127
Respuesta: Dar tamaño al input text

var input= document.createElement("input") ;
input.type="text";
input.style.width="120px"; // para el width
input.style.height="30px"; // para el height
input.maxLength= 20; // para la limitación (maxlength)
input.placeholder = "Ingrese su email" // texto
caja.appendChild(input);

Un saludo.