Ver Mensaje Individual
  #8 (permalink)  
Antiguo 22/08/2011, 13:25
Avatar de IsaBelM
IsaBelM
Colaborador
 
Fecha de Ingreso: junio-2008
Mensajes: 5.032
Antigüedad: 15 años, 10 meses
Puntos: 1012
Respuesta: Mi primer diseño

mejor así
Cita:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<style type="text/css">
#contenedor1{
width: 900px;
margin: auto;
background: #fe0;
padding: 6px 6px 0 6px;
overflow: hidden;
}


#contenedor2{
width: 1146px;
}


#contenedor2 > div {
background: #cacaca;
width: 140px;
height: 105px;
float: left;
margin-right: 237px;
margin-bottom: 6px;
}
</style>
</head>
<body>
<div id="contenedor1" >
<div id="contenedor2" >

<div>FOTO1</div>
<div>FOTO2</div>
<div>FOTO3</div>
<div>FOTO4</div>
<div>FOTO5</div>
<div>FOTO6</div>
<div>FOTO7</div>
<div>FOTO8</div>

</div>
</div>
</body>
</html>