css实现文字渐变

效果如图:

 .text-class {
  text-align: left;
  font-size: 36px;
  font-weight: bold;
  line-height: 36px;
  background-image: linear-gradient(#19f7ff 0%, #19a2ff 100%);// 使用该属性进行渐变
  -webkit-background-clip: text;
  color: transparent;//默认颜色设置透明
  background-clip: text;
  padding-right: 25px;
}

猜你喜欢

转载自blog.csdn.net/xiaoxiaoyang007/article/details/129593373