Hello,
Voici mon problème !
J'ai 2 structures qui fonctionnent parfaitement sous IE6 et Firefox :
- n°1 : un menu gauche fixe, un menu droit fixe et un corps en %
Code :
- <html>
- <head>
- <title>Structure 1</title>
- <style>
- #menu_gauche
- {
- float:left;
- width:160px;
- background-color:#EEEEEE;
- }
- #menu_droit
- {
- float:right;
- width:160px;
- background-color:#DDDDDD;
- }
- #corps
- {
- width:100%;
- background-color:#CCCCCC;
- }
- </style>
- </head>
- <body>
- <div id="menu_gauche">menu gauche</div>
- <div id="menu_droit">menu droit</div>
- <div id="corps">corps</div>
- </body>
- </html>
|
- n°2 : plusieurs encarts
Code :
- <html>
- <head>
- <title>Structure 2</title>
- <style>
- #encart_gauche
- {
- float:left;
- width:50%;
- background-color:#EEEEEE;
- }
- #encart_droit
- {
- float:right;
- width:50%;
- background-color:#DDDDDD;
- }
- #encart
- {
- float:left;
- width:100%;
- background-color:#CCCCCC;
- }
- </style>
- </head>
- <body>
- <div id="encart_gauche">1</div>
- <div id="encart_droit">2</div>
- <div id="encart">3</div>
- <div id="encart_gauche">4</div>
- <div id="encart_droit">5</div>
- <div id="encart">6</div>
- </body>
- </html>
|
Je souhaiterais simplement inclure la structure n°2 dans la n°1 (au niveau du corps bien sûr).
Or, si cela fonctionne sous IE6, impossible d'afficher quelque chose de correct sous Firefox.
Can you help me ? (pleaaaaaaaase !)
Message édité par $weblook le 13-02-2004 à 09:21:08