-2

Can we have text in two colors like:

enter image description here

For HTML:

I searched it but I got the answer for:-

enter image description here

Praveen Kumar Purushothaman
  • 164,888
  • 24
  • 203
  • 252
Babalu Pandey
  • 58
  • 1
  • 1
  • 14

1 Answers1

6

Here is a short example of what linear gradient can do

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