Cinq règles de style pour les paramètres d'arrière-plan
1. Couleur d'arrière-plan : background-color
2. Image d'arrière-plan : background-image
3. Répétition des images d'arrière-plan Méthode : background-repeat
4. Méthode de positionnement de l'image d'arrière-plan : background-position
5. Si l'image d'arrière-plan est fixe : background-attachment
6. Paramètres de taille de l'image d'arrière-plan : taille du fond
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>2.CSS背景设置</title> <style> body { background-color: lightcyan; background-image: url(../images/bg/sky3-1.png); background-repeat: no-repeat; background-attachment:fixed; background-size: cover; } div { width: 300px; height: 200px; line-height: 100px; text-align: center; background-color: aquamarine; /*可以通过js等方式来设置背景色透明*/ /*background-color: transparent;*/ border: 1px solid #363636; } </style> </head> <body> <div> <h2>PHP中文网 (<a href="">www.php.cn</a>)</h2> </div> </body> </html>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!