CSS Gradient Text Generator

Generate CSS for gradient text.

Gradient Text

Color Stops

Preview
8 lines of "css"
.gradient-text {
    background: linear-gradient(90deg, #000000 0%, #ffffff 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

More tools to try