Bonjour,
J'ai un souci avec la mise en page du site sur lequel je travaille. J'essaye de caler 3 div en absolu dans mon div footer. Pour une raison que je n'arrive pas à comprendre, ça fonctionne sous Firefox mais sous IE 7 ça s'aligne complètement à droite, en dehors du div parent...
Toute aide serait très fortement appréciée !!
Voilà mon code (simplifié) :
Et mon CSS :
Merci beaucoup pour votre aide !!
Modifié par Mastah (07 Jan 2011 - 08:29)
J'ai un souci avec la mise en page du site sur lequel je travaille. J'essaye de caler 3 div en absolu dans mon div footer. Pour une raison que je n'arrive pas à comprendre, ça fonctionne sous Firefox mais sous IE 7 ça s'aligne complètement à droite, en dehors du div parent...
Toute aide serait très fortement appréciée !!
Voilà mon code (simplifié) :
<head>
<link rel="stylesheet" type="text/css" href="div.css">
</head>
<body>
<div id="global">
<div id="header"></div>
<div id="barnav"></div>
<div id="content"></div>
<div id="nav"></div>
<div id="pied_page">
<div id="footer1">footer1</div>
<div id="footer2">footer2</div>
<div id="footer3">footer3</div>
</div>
</div>
</body>
Et mon CSS :
html {
height:100%;
margin: 0;
padding: 0;
border: none;
}
body {
margin:0;
padding:0;
border: none;
text-align:center;
}
#global {
position:absolute;
margin: 0 auto;
left: 50%;
top: 50%;
width: 900px;
height: 550px;
margin-top: -275px;
margin-left: -450px;
font-family: Verdana, Arial;
font-size:8pt;
background-color:#ffffff;
}
#header {
height:80px;
width:872px;
margin: 0 auto;
background-color:#4F4733;
}
#barnav {
height:38px;
width:900px;
margin: 0 auto;
background-color:#000000;
}
#content {
width:872px;
height:330px;
margin: 0 auto;
background-color:#B39C63;
}
#nav {
width:872px;
height:20px;
margin: 0 auto;
background-color:#000000;
}
#pied_page {
height:82;
width:872;
margin: 0 auto;
background-color:#4F4733;
}
#footer1 {
position:absolute;
width: 80px;
height: 15px;
background-color:#66CC33;
margin-left: 616px;
margin-top:61px;
}
#footer2 {
position:absolute;
width: 80px;
height: 15px;
background-color:#66CC33;
margin-left: 702px;
margin-top:61px;
}
#footer3 {
position:absolute;
width: 80px;
height: 15px;
background-color:#66CC33;
margin-left: 788px;
margin-top:61px;
}
Merci beaucoup pour votre aide !!
Modifié par Mastah (07 Jan 2011 - 08:29)