美文网首页
Css实现文字左右渐变和上下渐变

Css实现文字左右渐变和上下渐变

作者: nomooo | 来源:发表于2019-10-21 21:18 被阅读0次
来源截图

上下渐变

 color: #00fde8;
    background-image: -webkit-gradient(
      linear,
      0 0,
      0 bottom,
      from(rgb(25, 247, 228)),
      to(#d4fff7)
    );
    background-clip: text;
    -webkit-text-fill-color: transparent;

左右渐变

background: linear-gradient(to right, red, blue);
    background-clip: text;
    color: transparent;

相关文章

网友评论

      本文标题:Css实现文字左右渐变和上下渐变

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