Bonjour,
j'expose mon problème, j'aimerais que mon pied de page soit coller au bas de la page et ceci même avec très peu de contenu sur la page comme il est indiqué ici : http://web.covertprestige.info/test/16-page-sur-toute-la-hauteur-et-pied-de-page-1.html
Le problème c'est que j'utilise un margin-top négatif pour placer mon texte de contenu a l'endroit souhaiter..
Voici mon code source :
Xhtml
Css
Merci d'avance pour vos réponses.
Modifié par Romaric (13 Jun 2007 - 00:11)
j'expose mon problème, j'aimerais que mon pied de page soit coller au bas de la page et ceci même avec très peu de contenu sur la page comme il est indiqué ici : http://web.covertprestige.info/test/16-page-sur-toute-la-hauteur-et-pied-de-page-1.html
Le problème c'est que j'utilise un margin-top négatif pour placer mon texte de contenu a l'endroit souhaiter..
Voici mon code source :
Xhtml
<!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>Guizmo Story</title>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-15" />
<link rel="stylesheet" type="text/css" href="styles.css"
media="screen" />
</head>
<body>
<div id="global">
<div id="header">
</div>
<div id="contenu">
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
when an unknown printer took a galley of type and scrambled it to make a type specimen book.
It has survived not only five centuries, but also the leap into electronic typesetting,
remaining essentially unchanged. It was popularised in the 1960s with the release of
Letraset sheets containing Lorem Ipsum passages,
Letraset sheets containing Lorem Ipsum passages,
and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</div>
<div id="footer">
<div class="copy">Copyright</div>
</div>
<div id="bgbas">
<div id="imgbas">
</div>
</div>
</div>
</body>
</html>
Css
Body {
background-image:url(images/bg.png);
margin : 0 auto 0 auto;
height:100%;
}
#global {
background-image: url(images/corp.png);
background-repeat : repeat-y;
min-height: 100%;
}
#header {
width : 567px;
height : 316px;
background-image:url(images/header.png);
background-repeat : no-repeat;
}
#contenu {
border:1px solid black;
margin-top:-60px;
margin-bottom: 20px;
width: 460px;
margin-left: 60px;
}
#footer {
clear : both;
background-image:url(images/footer.png);
width: 567px;
height:125px;
}
#imgbas {
background-image:url(images/corner-bas-gauche.png);
width: 214px;
height:190px;
}
#bgbas {
background-image:url(images/bg-bas.png);
background-repeat: repeat-x;
height:190px;
}
.copy {
text-align:center;
padding-top:35px;
}
Merci d'avance pour vos réponses.
Modifié par Romaric (13 Jun 2007 - 00:11)