Bonjour à tous c'est encore moi !!!
Voila mon problème
Je veux mettre une image en fond de page
Lorsque j'ai ceci sur ma page ça marche
Maintenant quand j'ai ceci dans ma feuille externe et en supprimant le style dans ma page ça ne marche pas (pour les liens ça marche)
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8 <style type="text/css"> <!-- body { background-image: url(image_site/new_image/fond_bleu_2.jpg); background-repeat: repeat; } --> </style>
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26 /*===========================================================================*/ @charset=utf-8; body { background-image: url(image_site/new_image/fond_bleu_2.jpg); background-repeat: repeat; } a:link { text-decoration: none; color: #FFFFFF; } a:visited { text-decoration: none; color: #FFFFFF;} a:hover { text-decoration: none; color: #000000; } a:active { text-decoration: none; color: #FFFFAA;} /* CSS Document */ }
lien pour ma feuille externe
Code : Sélectionner tout - Visualiser dans une fenêtre à part <link href="css/style_gene.css" rel="stylesheet" media="all" type="text/css"/>
Partager