美文网首页
vscode中css样式-webkit-background-c

vscode中css样式-webkit-background-c

作者: 安北分享 | 来源:发表于2021-11-25 11:13 被阅读0次

    背景

    需要写一个文字的渐变效果,然后找了一个css样式,功能实现了,但是报错

    问题

    在开发时用-webkit-background-clip 在vscode报警告
    报错信息如下:
    Also define the standard property 'background-clip' for compatibility

    image.png

    解决

    后面加了一行代码就好了,如下:


    image.png
              background-clip: text;
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
    

    相关文章

      网友评论

          本文标题:vscode中css样式-webkit-background-c

          本文链接:https://www.haomeiwen.com/subject/houatrtx.html