Ver Mensaje Individual
  #1 (permalink)  
Antiguo 11/05/2008, 08:40
p2pdownloading
Invitado
 
Mensajes: n/a
Puntos:
problemas mozilla y width

hola tengo un problema con mozilla que no me reconoce el ancho de un div 100% entonces me muestra las tablas al 100% respecto de toda la pantalla

aqui dejo el resumen del codigo

no le encuentro solucion!

saludos y gracias de antemano

Código PHP:
<html>
<
head>
<
style>

#content {
text-alignleft;
height100%;
background-color#fff;
width100%;

}



#left_sidebar {
floatleft;
width120px;
height200%;
background#43758c;
}




#right_sidebar_container_bottom{
        
float:right

    
width310px;

        
height:100%;
        
background:#143d55;

}

#main {
width100%;
padding-top0px;
height100%;
margin-left30px;
}


</
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