美文网首页
css文字颜色渐变

css文字颜色渐变

作者: 假冷 | 来源:发表于2022-09-19 11:39 被阅读0次

左右渐变

 background: linear-gradient(to right, #f9ca3a, #f7941f);

从中间向两边渐变

background: linear-gradient(to right, rgba(251, 225, 174, .5) 0%, rgba(251, 225, 174, 1) 50%, rgba(251, 225, 174, .5) 100%);
 background-clip: text;
 -webkit-background-clip: text;
 color: transparent;

相关文章

网友评论

      本文标题:css文字颜色渐变

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