Bonsoir,
je tente d'agencer des boites en colimaçon, sans succès sous IE6. Sous ce navigateur, les boites ne se calent pas selon l'axe central de la page, voici mon code, qui fonctionne sans problèmes sous FireFox :
Merci de votre aide!
Modifié par MasterPingouin (21 Feb 2008 - 12:47)
je tente d'agencer des boites en colimaçon, sans succès sous IE6. Sous ce navigateur, les boites ne se calent pas selon l'axe central de la page, voici mon code, qui fonctionne sans problèmes sous FireFox :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>test</title>
<meta http-equiv="content-language" content="fr" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style>
* {margin:0; padding:0}
.odd {
width:40%;
height:300px;
margin: 0 0 0 10%;
background-color:#000000;
}
.even {
float:right;
width:40%;
height:300px;
margin: 0 10% 0 0;
background-color:#000000;
}
</style>
</head>
<body>
<div class="odd"></div>
<div class="even"></div>
<div style="clear:both; overflow:hidden"></div>
<div class="odd"></div>
<div class="even"></div>
</body>
</html>
Merci de votre aide!
Modifié par MasterPingouin (21 Feb 2008 - 12:47)