如何在一個聲明中設定多個背景屬...LOGIN

如何在一個聲明中設定多個背景屬性

實例解析:

background屬性是一個簡寫屬性,可以在一個宣告中設定所有的背景屬性。

可以設定的屬性分別是:background-color, background-position, background-size, background-repeat, background-origin , background-clip, background-attachment,和background-image.

如果缺少一個上述值,也不要緊,例如background:#FF0000 URL(smiley.gif);是允許的。






#########下一節
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(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>背景图片只显示一次,但它位置离文本比较远。</p> <p>在这个例子中我们添加了一个右边距,所以背景图像不会打扰到文本。</p> </body> </html>
章節課件