Set background image for font color?

后端 未结 5 917
半阙折子戏
半阙折子戏 2020-12-15 12:34

Say I have the following code:

Hello world!

And the following CSS:

span{
color:red;
}
5条回答
  •  太阳男子
    2020-12-15 13:33

    it is possible, take a look at this pen here

    https://codepen.io/feferonka/pen/eoWLZp

    Use this on parent of text:

      background-image: url(url);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    

提交回复
热议问题