我正在使用顺风3,我试图得到这个效果:
background: url('img1.png') repeat 20%, url('img2.png') no-repeat;
我试了各种方法,就像这样:
bg-[url("img1.png"),url("img2.png")] bg-[length:20%,auto] bg-repeat
但是我不能使bg-repeat仲裁使它重复第一个而不是第二个。
确实,像bg-[repeat-x,repeat-y]
这样的东西不起作用,并且在文档中没有关于它的任何内容。似乎你必须使用伪::before和::after…