Ver Mensaje Individual
  #3 (permalink)  
Antiguo 22/01/2013, 21:54
nedyer
 
Fecha de Ingreso: enero-2011
Mensajes: 94
Antigüedad: 13 años, 3 meses
Puntos: 7
Respuesta: Selects del mismo tamaño propiedades?¿

hay 3 formas, alterando la etiqueta html por id o por clase.


forma 1: alterando todos los select html

Código CSS:
Ver original
  1. select { width: 300px; }
Código HTML:
Ver original 


forma 2: alterando solo el id, altera el select que tengan el id #hola

Código CSS:
Ver original
  1. #hola { width: 300px; }
Código HTML:
Ver original
  1. <select name="hola" id="hola"></select>



forma 4: alterando por clase, altera a todos los select que tengan la clase .hola

Código CSS:
Ver original
  1. .hola { width: 300px; }
Código HTML:
Ver original
  1. <select name="hola" class="hola"></select>