top of page

Utility

Tools

Wix CSS Code - Radial Gradient Text Effect

Wix CSS Code - Radial Gradient Text Effect

By using this CSS code, you can add a radial gradient effect to your texts. This code only works in Wix Studio, not in the Classic Editor. Change the colors and orientation in code


background: radial-gradient(circle, #f72585, #ffbe0b, #4361ee, #3ad59a);


Code


.css-tutorial {
   background: radial-gradient(circle, #f72585, #ffbe0b, #4361ee, #3ad59a);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

bottom of page