哪个 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>
广告