Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Sauvegarder le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <head> <style> body { background-image: url('img_girl.jpg'); background-repeat: no-repeat; background-attachment: fixed; taille-de-fond: couvrir; } </style> </head> <body> <h2>Couverture de fond</h2> <p>Définissez la propriété background-size sur "cover" et l'image de fond couvrira l'ensemble de l'élément, dans ce cas l'élément body.</p> </body> </html>