Body background

Body background - HTML/CSS - Programmation

Marsh Posté le 10-11-2005 à 04:16:28    

J'ai mis la commande suivante pour avoir une image de fond; il s'agit d'une photo.
 
<BODY background="c:\temp\phbourse.gif">
 
Le problème est que l'image se répète à droite et je ne veux pas cela.
 
Merci de m'aider!

Reply

Marsh Posté le 10-11-2005 à 04:16:28   

Reply

Marsh Posté le 10-11-2005 à 08:51:47    

Il faut utiliser "no-repeat". Malheureusement <BODY background="c:\temp\phbourse.gif" no-repeat> ne marche pas.
 
Il faut définir un style pour le background dans le header :

Code :
  1. <html>
  2. <head>
  3. <style type="text/css">
  4. body {
  5.   background:url("c:\temp\phbourse.gif" ) no-repeat;
  6. }
  7. </style>
  8. </head>
  9. <body>
  10. Test
  11. </body>
  12. </html>

Reply

Marsh Posté le 10-11-2005 à 12:08:39    

Merci beaucoup!

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed