Search code examples
htmlcsscolorstextcolor

Two colors in text in css


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


Solution

  • 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>