salut,
faudrait englober pour la colonne gauche bloc1 et blocvisiteur dans un div "float:left", pour la colonne bloc et blocpied dans un autre div "float:right", plutot que d'utiliser des "position:absolute" et des "margin" pour positionner les éléments à droite...
<html>
</head>
<style type="text/css">
.corps{
width : 1020px;
margin-left : auto;
margin-right : auto;
border : 1px;
border-color : black;
border : solid;
-moz-box-shadow: 0px 0px 9px #000000;
-moz-border-radius : 10px;
overflow:hidden;
}
.bloc
{
width : 600px;
height : auto;
margin-bottom: 40px;
padding-left: 40px;
padding-right: 40px;
padding-top : 40px;
padding-bottom: 40px;
background-color : white;
text-align: justify;
-moz-box-shadow: 0px 0px 9px #000000;
-moz-border-radius : 10px;
border-radius : 15px;
overflow : hidden;
}
.bloc1
{
width : 200px;
margin-left : 15px;
margin-right : auto;
margin-bottom: 40px;
padding-left: 40px;
padding-right: 40px;
padding-top : 40px;
padding-bottom: 40px;
background-color : white;
-moz-box-shadow: 0px 0px 9px #000000;
-moz-border-radius : 10px;
border-radius : 15px;
}
.blocpied{
width : 600px;
height : 10px;
padding-left: 40px;
padding-right: 40px;
padding-top : 40px;
padding-bottom: 40px;
background-color : white;
text-align: center;
-moz-box-shadow: 0px 0px 9px #000000;
-moz-border-radius : 10px;
border-radius : 15px;
clear:both;
}
.spacer {
clear : right ;
}
.blocVisiteur{
width : 200px;
height : 300px;
margin-left : 15px;
margin-right : auto;
margin-bottom: 30px;
padding-left: 40px;
padding-right: 40px;
padding-top : 40px;
padding-bottom: 100px;
background-color : white;
-moz-box-shadow: 0px 0px 9px #000000;
-moz-border-radius : 10px;
border-radius : 15px;
overflow : hidden;
}
- conteneurgauche{
float:left;width:340px
}
- conteneurdroit{
float:right;width:680px
}
</style>
</head>
<body>
<div class="corps">
<div id="conteneurgauche">
<div class="bloc1">
</div>
<div class="blocVisiteur">
</div>
</div>
<div id="conteneurdroit">
<div class="bloc">
</div>
corps
<div class="blocpied"></div>
</div>
</div>
</body>
</html>