国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

How to set multiple background properties in one declaration

Example analysis:

The background attribute is a shorthand attribute that can set all background attributes in one statement.

The attributes that can be set are: background-color, background-position, background-size, background-repeat, background-origin , background-clip, background-attachment, and background-image.

It doesn’t matter if one of the above values ??is missing, for example, background: #FF0000 URL (smiley.gif); is allowed .






#

Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <style> body { background:#ffffff url('https://img.php.cn/upload/article/000/000/015/5c6ba8b3a7ee3101.png') no-repeat right top; margin-right:200px; } </style> </head> <body> <h1>Hello World!</h1> <p>背景圖片只顯示一次,但它位置離文本比較遠(yuǎn)。</p> <p>在這個(gè)例子中我們添加了一個(gè)右邊距,所以背景圖像不會(huì)打擾到文本。</p> </body> </html>
submitReset Code