我只是看了一下 CSS background-clip。它是一种用图像掩盖文本的方法。(或者反过来?^^)。无论如何,我认为 CSS 中的语句顺序不会影响结果,但是使用背景剪辑会影响结果。
此效果的 CSS 通常如下所示:
.text{
color: transparent;
background: url(pic.ending);
-webkit-background-clip: text;
}
所以,这是<p>
下面小提琴中的第一个。但是当我将其顺序更改为以下时:
.text_wrong{
-webkit-background-clip: text;
color: transparent;
background: url(pic.ending);
}
它不起作用。文本没有被遮盖,背景发生在孔中<p>
。所以当背景剪辑在背景之前时会发生错误,对吗?
为什么?你有什么主意吗?对不起,我的英语不好。(这是小提琴。)