CODE
div#centre {
width:50%;
}
div#gauche {
position: absolute;
top: 1px;
left: 1px;
width: 18%;
}
div#droite {
position: absolute;
top: 1px;
right: 1px;
width: 18%;
}
.flottante {
background-color: #00ff00;
margin: 2px;
float: left;
width: 100px;
text-align: center;
}
.conteneur {
width: 100%;
}
.spacer {
clear: both;
}
width:50%;
}
div#gauche {
position: absolute;
top: 1px;
left: 1px;
width: 18%;
}
div#droite {
position: absolute;
top: 1px;
right: 1px;
width: 18%;
}
.flottante {
background-color: #00ff00;
margin: 2px;
float: left;
width: 100px;
text-align: center;
}
.conteneur {
width: 100%;
}
.spacer {
clear: both;
}
CODE
<html>
<head>
<link ref="stylesheet" type="text/css" href="un.css" />
</head>
<body>
<div class="conteneur">
<p class="flottante">boîte verte 1</p>
<p class="flottante">boîte verte 2</p>
<p class="flottante">boîte verte 3</p>
...etc...
<div class="spacer"> </div>
</div>
<div id="centre">
COUCOU MENU 1
</div>
<div id="gauche">
COUCOU1 PAGE PRINCIPALE
</div>
<div id="droite">
COUCOU2 MENU 2
</div>
</body>
</html>
<head>
<link ref="stylesheet" type="text/css" href="un.css" />
</head>
<body>
<div class="conteneur">
<p class="flottante">boîte verte 1</p>
<p class="flottante">boîte verte 2</p>
<p class="flottante">boîte verte 3</p>
...etc...
<div class="spacer"> </div>
</div>
<div id="centre">
COUCOU MENU 1
</div>
<div id="gauche">
COUCOU1 PAGE PRINCIPALE
</div>
<div id="droite">
COUCOU2 MENU 2
</div>
</body>
</html>
et voilà le resultat que j'obtiens
CODE
boîte verte 1
boîte verte 2
boîte verte 3
...etc...
COUCOU MENU 1
COUCOU1 PAGE PRINCIPALE
COUCOU2 MENU 2
boîte verte 2
boîte verte 3
...etc...
COUCOU MENU 1
COUCOU1 PAGE PRINCIPALE
COUCOU2 MENU 2
SVP aidez moi
A+
Ganjah