Ver Mensaje Individual
  #4 (permalink)  
Antiguo 23/01/2013, 08:54
Avatar de CMushroom
CMushroom
 
Fecha de Ingreso: diciembre-2011
Ubicación: Morelos
Mensajes: 99
Antigüedad: 12 años, 4 meses
Puntos: 1
Respuesta: Selects del mismo tamaño propiedades?¿

Cita:
Iniciado por nedyer Ver Mensaje
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>
gracias