Bonsoir,
Je débute en css...
J'ai essayé toute cette après midi de réaliser un petit exercice CSS mais je n'y suis pas arrivé
Voila le but de ce petit entrainement était de réaliser une page avec deux backgrounds, un en tête de page, l'autre en pied de page.
J'ai tout essayé dans les limites de mes compétences (patience) mais rien à faire... Ca ne marche toujours pas.
[résolu] > De plus je rencontre un problème avec IE, les images ne s'affichent même pas.
Voila, j'ai besoin d'un petit coups de pouce...
Merci d'avance
Pass1
index.html
style.css
Modifié par pass1 (29 Apr 2009 - 00:29)
Je débute en css...
J'ai essayé toute cette après midi de réaliser un petit exercice CSS mais je n'y suis pas arrivé
Voila le but de ce petit entrainement était de réaliser une page avec deux backgrounds, un en tête de page, l'autre en pied de page.
J'ai tout essayé dans les limites de mes compétences (patience) mais rien à faire... Ca ne marche toujours pas.
[résolu] > De plus je rencontre un problème avec IE, les images ne s'affichent même pas.
Voila, j'ai besoin d'un petit coups de pouce...
Merci d'avance
Pass1
index.html
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link media="screen" rel="stylesheet" href="style.css" />
<!-- <script src="javascript.js" type="text/javascript"></script> -->
<title>dev+</title>
</head>
<body>
<div id="head-background"></div>
<div id="primary-content">
<div id="footer-content">
pofjzeopfjzpefofjzepofj<br />
pofjzeopfjzpefofjzepofj<br />
...
pofjzeopfjzpefofjzepofj<br />
pofjzeopfjzpefofjzepofj<br />
</div>
</div>
<div id="foot-background"></div>
</body>
</html>
style.css
body {
background-color: #544815;
margin:0;
padding:0;
z-index:0;
}
#primary-content{
width: 800px;
margin: auto;
margin-top: -20px;
margin-bottom: -355px;
z-index:10;
}
/*FOOTER CONTENT*/
#footer-content{
width:100%;
background-color: #665464;
}
/*BACKGROUND*/
#head-background{
z-index:1;
width: 100%;
height: 164px;
background: url(images/1.gif)0px -56px repeat-x;
}
#foot-background{
z-index:2;
bottom: 0;
width: 100%;
height: 355px;
background: url(images/1.gif)0px -220px repeat-x;
}
Modifié par pass1 (29 Apr 2009 - 00:29)