Bonjour !
Petit soucis avec mon dernier bout de code. Impossible d'avoir une page s'adaptant à la hauteur du contenu... Gênant, d'autant plus que lorsque j'enlève les derniers blocs, tout marche parfaitement.
Je suis un peu dépassé là... J'ai testé la chose sous Firefox 3 ainsi que sous IE 7.
Voici le lien : http://www.jironimo.com/leadbay/leadbay_jironimo_template_test.html.
Et voici le code incriminé :
Merci d'avance !
Modifié par Forgaria (27 Oct 2008 - 15:25)
Petit soucis avec mon dernier bout de code. Impossible d'avoir une page s'adaptant à la hauteur du contenu... Gênant, d'autant plus que lorsque j'enlève les derniers blocs, tout marche parfaitement.
Je suis un peu dépassé là... J'ai testé la chose sous Firefox 3 ainsi que sous IE 7.
Voici le lien : http://www.jironimo.com/leadbay/leadbay_jironimo_template_test.html.
Et voici le code incriminé :
<!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="en" lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Leadbay</title>
<style type="text/css">
html, body {
background-color:blue;
height:100%;
margin:0px;
padding:0px;
text-align:center;
}
#page {
background-color:white;
height:100%;
margin:0px auto;
padding:35px 50px 35px 50px;
width:700px;
}
#logo {
background-color:orange;
float:left;
height:60px;
margin:0px 0px 35px 0px;
width:253px;
}
#slogan {
background-color:red;
float:left;
height:33px;
margin:0px 0px 0px 20px;
width:137px;
}
#telephone {
background-color:blue;
float:right;
margin:0px;
height:44px;
width:203px;
}
#header {
background-color:green;
float:right;
height:300px;
margin:0px 0px 35px 0px;
width:700px;
}
#bloc_1 {
background-color:orange;
float:left;
height:210px;
margin:0px 35px 35px 0px;
width:210px;
}
#bloc_2 {
background-color:orange;
float:left;
height:210px;
margin:0px 0px 35px 0px;
width:210px;
}
#bloc_3 {
background-color:orange;
float:left;
height:210px;
margin:0px 0px 35px 35px;
width:210px;
}
#web {
background-color:red;
border-top:1px solid black;
float:left;
height:210px;
padding:35px 0px 0px 0px;
margin:0px 35px 35px 0px;
width:210px;
}
#contact {
background-color:red;
border-top:1px solid black;
float:left;
height:210px;
padding:35px 0px 0px 0px;
margin:0px 0px 35px 0px;
width:455px;
}
</style>
</head>
<body>
<div id="page">
<div id="logo">test</div>
<div id="slogan">test</div>
<div id="telephone">test</div>
<div id="header">test</div>
<div id="bloc_1">test</div>
<div id="bloc_2">test</div>
<div id="bloc_3">test</div>
<div id="web">test</div>
<div id="contact">test</div>
</div>
</body>
</html>
Merci d'avance !
Modifié par Forgaria (27 Oct 2008 - 15:25)