RE: [Ovillo] Cambiar el tamaño de un input

2005-12-13 Por tema DeltaIdeas :: David Lombardia
: Ovillo, la lista de CSS en castellano Asunto: Re: [Ovillo] Cambiar el tamaño de un input Pues input { width: 50em; height: 10em; } Esto te modifica todos, incluyendo los botones, por eso yo generalmente termino usando clases de esta forma: .campo { width: 50em; height: 10em; } .boton

RE: [Ovillo] Cambiar el tamaño de un input

2005-12-13 Por tema Iban Rodriguez
input { height: 30px; width: 120px; } también puedes jugar con otras cosas como background-color: background-image: ... Pero ojo eso te lo cambia a TODOS los input. Si quieres aplicar un estilo a uno concreto, aplicale class="estilo" .estilo { } ___