css 中文本的两种颜色

Two colors in text in css

我们可以使用两种颜色的文本吗:

对于HTML:

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

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

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