Ver Mensaje Individual
  #3 (permalink)  
Antiguo 17/09/2005, 13:55
pellagofio
 
Fecha de Ingreso: noviembre-2003
Mensajes: 383
Antigüedad: 20 años, 5 meses
Puntos: 2
Un ejemplo podría ser esto ...

Código HTML:
<head>
<style>
.contenedor {  }
.SupIz, .InfIz { float: left; width: 25%; height: 29;  background-color: red;}
.SupCe, .InfCe { float: left; width: 75%; height: 29;  background-color: blue;}

.CenIz { float: left; width: 25%; height: 124px; text-align: right; background-color: yellow; }
.CenCe { float: left; width: 50%; height: 124px; text-align: center; background-color: green; }
.CenDe { float: left; width: 25%; height: 124px; text-align: right; background-color: yellow;}

</style>
</head>

<div class="contenedor">
	<div class="SupIz">SupIz</div>
	<div class="SupCe">SupCe</div>
	
	<div class="CenIz">CenIz</div>
	<div class="CenCe">CenCe</div>
	<div class="CenDe">CenDe</div>

	<div class="InfIz">SupIz</div>
	<div class="InfCe">SupCe</div>
</div> 

El problema esta en que tu código accedes a imagenes las cuales nosotros no tenemos y no podemos probar esa parte.