Ver Mensaje Individual
  #5 (permalink)  
Antiguo 11/05/2008, 12:25
Avatar de Mikmoro
Mikmoro
Colaborador
 
Fecha de Ingreso: octubre-2006
Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 17 años, 6 meses
Puntos: 280
Re: problemas mozilla y width

Prueba a ver si te va bien así:

Cita:
<html>
<head>
<style>
#content {
text-align: left;
height: 100%;
background-color: #fff;
width: 100%;
}
#left_sidebar {
float: left;
width: 120px;
height: 200%;
background: #43758c;
}
#right_sidebar_container_bottom{
float:right;
width: 310px;
height:100%;
background:#143d55;
}
#main {
padding-top: 0px;
height: 100%;
margin-left: 30px;
overflow: hidden;
}
</style>
</head>
<body>
<div id="content">
<div id="left_sidebar">
</div>

<div id="main">
<table border="1" width="100%">
<td>
contenido
</td>
</table>
</div>

</div>
</body>
</html>
Mikel.