我尝试将元素的CSS设置为此:url('example.png') center center 100% 100% no-repeat
但是我有一个错误:无效的属性值
该定义应该没问题,因为背景属性值应如下所示:background: color position size repeat
我不知道,我怎么了?
最佳答案
尝试
background: url('example.png') center center / 100% 100% no-repeat;
注意斜杠
关于css - 无效的属性值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22919219/