css中文本的两种颜色

Bab*_*dey -2 html css colors textcolor

我们可以有两种颜色的文本,例如:

在此处输入图片说明

对于 HTML:

我搜索了它,但我得到了答案:-

在此处输入图片说明

JSm*_*ith 5

这是线性渐变可以做什么的简短示例

h1 {
  font-size: 72px;
  background: -webkit-linear-gradient(green, red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
Run Code Online (Sandbox Code Playgroud)
<h1>
The BLA BLA
</h1>
Run Code Online (Sandbox Code Playgroud)