Is it possible to set horizontal gradient to text

2019-04-13 04:50发布

This question already has an answer here:

Is it possible to set horizontal gradient to text via CSS? (left letter one colour, right - another colour).

1条回答
我只想做你的唯一
2楼-- · 2019-04-13 05:04

Yes, it is.

h1 {
  font-size: 72px;
   background: -webkit-linear-gradient(left, red , yellow);
   background: -o-linear-gradient(right, red, yellow);
   background: -moz-linear-gradient(right, red, yellow);
   background: linear-gradient(to right, red , yellow); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
<h1>Hello World</h1>

查看更多
登录 后发表回答