背景設定の5つのスタイルルール
1. 背景色:background-color
2. 背景画像:background-image
3. 背景画像の繰り返し方法:background-repeat
4. 背景の配置方法image:background-position
5.背景画像の固定有無:background-attachment
6.背景画像のサイズ設定:background-size
<!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>
以上がCSSの背景設定の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。