background-image属性可以加no-repeat吗
时间: 2023-08-31 21:49:40 浏览: 135
vue的style绑定background-image的方式和其他变量数据的区别详解
是的,background-image属性可以加no-repeat。no-repeat是background-repeat属性的一个值,用于指定背景图片不要重复显示。例如,使用以下CSS代码可以设置一个背景图片不重复显示:
background-image: url("example.jpg");
background-repeat: no-repeat;
这将显示一个单独的背景图片,不会被重复显示。
阅读全文