Skip to content
On this page

CSS实现文字渐变

代码展示

  • 关于linear-gradient更多用法详见这里
  • 关于background-clip更多用法详见这里
css
.gradient-text {
  background: linear-gradient(to right, blue 20%, red 50%, #FFFFFF);
  width: max-content;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

其他

效果预览

查看代码