哪個 CSS 屬性用於控制背景中影像的重複?
要控制背景中影像的重複,請使用 background-repeat 屬性。如果你不想重複影像,可以使用 background-repeat 屬性的 no-repeat 值,在這種情況下,影像只顯示一次。
示例
可以嘗試執行以下程式碼以瞭解如何使用 background-repeat 屬性
<html> <head> <style> body { background-image: url("/css/images/css.jpg"); background-repeat: repeat; } </style> </head> <body> <p>Tutorials Point</p> </body> </html>
廣告