top of page

Utility

Tools

Wix CSS - Linear Gradient Effect On Text

Wix CSS - Linear Gradient Effect On Text

The following CSS code adds a gradient effect to your text elements. Use them with the CSS class of your choice. Add Color codes and gradient angle in


background: linear-gradient(135deg, color1, color2);

You can add as many colors as you want.


Code


.css-tutorial {
           background: linear-gradient(135deg, color1, color2);
           -webkit-background-clip: text;
           -webkit-text-fill-color: transparent;
           background-clip: text;
       }

bottom of page