Aide pour code
Fermé
keegan.
Messages postés
434
Date d'inscription
mercredi 17 septembre 2008
Statut
Membre
Dernière intervention
30 juillet 2009
-
5 déc. 2008 à 16:54
a44icus - 5 déc. 2008 à 17:18
a44icus - 5 déc. 2008 à 17:18
A voir également:
- Aide pour code
- Code asci - Guide
- Code puk bloqué - Guide
- Code telephone oublié - Guide
- Code activation windows 10 - Guide
- Code gta 4 ps4 - Guide
3 réponses
<!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" > <head> <style type="text/css"> #Layer1 { position:absolute; left:5px; top:1px; width:1440px; height:900px; z-index:1; background-color: #000033; } body { background-image: url(baniere.png); background-repeat: no-repeat; background-attachment:fixed; background-position: top left; } </style> </head> <body> <div id="Layer1"></div> <p> </p> </body> </html>
keegan.
Messages postés
434
Date d'inscription
mercredi 17 septembre 2008
Statut
Membre
Dernière intervention
30 juillet 2009
38
5 déc. 2008 à 17:10
5 déc. 2008 à 17:10
oui sa marche mais ma baniere s'affiche derrière mon calque(fond) est je n'arrive pas a la mettre sur mon calque (fond)
Tu créés une boite au dessus de ta boite Layer1 comme cela :
<!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" > <head> <style type="text/css"> #Layer1 { position:absolute; left:5px; top:1px; width:1440px; height:900px; z-index:1; background-color: #000033; } #header{ background-image: url(baniere.png); background-repeat: no-repeat; background-attachment:fixed; background-position: top left; } </style> </head> <body> <div id="header"></div> <div id="Layer1"></div> <p> </p> </body> </html><code></code>