Bonjour à toutes et à tous !
Je vous soumets un petit probleme :
Sous IE j'ai un div qui devrait "passer" sous un autre div flottant mais qui veut pas ... Sous FF no problem ... comme d'hab' !
le html :
le css :
Et un exemple en ligne : içi
Merci d'éclairer mes lanternes parcque là je sèche ...
Modifié par barbe douce (27 Jun 2006 - 00:34)
Je vous soumets un petit probleme :
Sous IE j'ai un div qui devrait "passer" sous un autre div flottant mais qui veut pas ... Sous FF no problem ... comme d'hab' !
le html :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Arroenia</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" type="text/css" href="style2.css">
<script type="text/javascript" src="dir.js"></script>
</head>
<body>
<div id="conteneur">
<div id="header"></div>
<div id="menu"></div>
<div id="frame"></div>
<div id="contenu"></div>
<div id="footer"></div>
</div>
</body>
</html>
le css :
/* G E N E R A L */
*{margin:0;padding:0;}
body {
font: 85% arial, hevetica, sans-serif;
text-align: center;
color: #505367;
background: #D6D6D6 url(images/bois.gif) repeat;
}
/* C O N T E N E U R */
#conteneur {
margin: 1em auto;
width: 750px;
text-align: left;
background-color: red;
border: 1px solid black;
}
/* H E A D E R */
#header {
height: 115px;
background-color: fuchsia;
}
/* M E N U */
#menu {
height: 30px;
background-color: green;
}
/* F R A M E */
#frame {
float: right;
overflow: auto;
width: 250px;
height: 100px;
background-color: yellow;
}
/* C O N T E N U */
#contenu {
width: 750px;
height: 200px;
background-color: aqua;
}
/* F O O T E R */
#footer {
clear: both;
height: 30px;
background-color: lime;
}
Et un exemple en ligne : içi
Merci d'éclairer mes lanternes parcque là je sèche ...
Modifié par barbe douce (27 Jun 2006 - 00:34)