Tengo una duda, que diferencias existen entre estas formas de declarar id's y clases, por ejemplo yo puedo poner esto:
Código:
entonces tengo un contenedor con una estructura de 3 columnas, pero podría ponerlo de esta manera:#contenedor{ width:800px; height:auto;margin:0 auto;} .caja1{width:200px; height:auto;float:left} .centro{width:400px; height:auto; float:left} .caja2{width:200px; height:auto;float:right}
Código:
Qué es lo diferente? #contenedor{ width:800px; height:auto;margin:0 auto;} #contenedor div.caja1{width:200px; height:auto;float:left} #contenedor div.centro{width:400px; height:auto; float:left} #contenedor div.caja2{width:200px; height:auto;float:right}