Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/03/2011, 12:21
Avatar de el_tigre
el_tigre
 
Fecha de Ingreso: febrero-2006
Ubicación: Perú
Mensajes: 1.044
Antigüedad: 18 años, 2 meses
Puntos: 8
De acuerdo Maquetación de cuadros

Amigos estoy haciendo unas divisiones de 3 columnas y 3 filas, la primera fila me sale perfecto, pero la segunda no responde....¿dónde estoy fallando?...

Código CSS
Código PHP:
#content-middle { padding: 0 25px 25px; background: url(../images/content-middle.gif) repeat-y; }
#content-bottom { clear: both; padding: 6px 0 7px; background: url(../images/content-bottom.gif) no-repeat left bottom; }

.column floatleftwidth283pxmargin0 40px 0 0line-height2.2em; }
    .
column.last margin-right0; }
    .
column img padding10pxborder1px solid #ddd; margin: 0 0 5px; }
    
.more a backgroundurl(../images/bullet.gifno-repeat 0 7pxpadding0 0 0 8pxcolor#672A6D; font-weight: bold; font-size: .9em; } 
y esto es mi Html (ejemplo de 2 filas)......
Código HTML:
<div id="content-top"></div>
		<div id="content-middle">
			
		
			<div class="column" align="justify">
				<h3>NOSOTROS</h3>
				<img src="images/nosotros.gif" alt="nosotros" />
				<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting</p>
				
		  </div>

			<div class="column" align="justify">
				<h3>VISION</h3>
				<img src="images/vision.gif" alt="vision" />
				<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting</p>
				
			</div>	
			
			<div class="column last" align="justify">
				<h3>MISION</h3>
				<img src="images/mision.gif" alt="mision" />
				<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting</p>
				
			</div>	
            
			<div class="column" align="justify">
				<h3>ESTRATEGIAS</h3>
				<img src="images/nosotros.gif" alt="nosotros" />
				<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting</p>
				
		  </div>

			<div class="column" align="justify">
				<h3>OBJETIVOS</h3>
				<img src="images/vision.gif" alt="vision" />
				<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting</p>
				
			</div>	
			
			<div class="column last" align="justify">
				<h3>CONTACTOS</h3>
				<img src="images/mision.gif" alt="mision" />
				<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting</p>
				
			</div>	
        
			<div class="clear"></div>
		</div>