Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/12/2010, 14:02
Anotadorcom
 
Fecha de Ingreso: diciembre-2010
Ubicación: Argentina
Mensajes: 42
Antigüedad: 13 años, 4 meses
Puntos: 0
Respuesta: alineando 3 divs relativamente.

Cita:
<head>
<title>Portgaz</title>
<style type="text/css">

body {
background:#D8D8D8;
}

#bodo {
background:#8181F7;
margin:auto;
width:90%;
height:500px;
}

#div1 {
background:#0B0B61;
width:25%;
height:500px;
float:left;
z-index:1;
}

#div2 {
background:#0B0B61;
margin-left:5%;
float:left;
width:35%;
height:500px;
}

#div3 {
background:#0B0B61;
margin-left:5%;
width:30%;
height:500px;
float:right;

}

</style>
</head>
<body>

<div id="bodo">

<div id="div1">&nbsp;</div>
<div id="div2">&nbsp;</div>
<div id="div3">&nbsp;</div>
</div>

</body>