Gradient text style using CSS

Gradient backgrounds started the trend, nowadays websites have more gradient colors for many elements after gradient become widely supported on modern browsers.

One such aspect is, styling text with gradient color. Let see it in action

.gradient-text {
  // set the background color
  background: linear-gradient(to right, #ff8a00 0%, #da1b60 100%);
  // background color masked along the text and clip away the rest
  -webkit-background-clip: text;
  // make fill color to transparent so that masked background color will be shown
  -webkit-text-fill-color: transparent;
}

Browser compatibility

  • This is only supported in webkit based browsers. For other browsers, color property can be the fallback option to render color related to the gradient color.
  • -webkit-text-fill-color is a non standard CSS, so have fallback color property to support every browser without causing accessibility issues on non supported browsers.

https://codepen.io/Param-Harrison/pen/pGgGxp

Apart from IE, all major browser support this solution. Hope you learn a trick to show a text with gradient color on your site 😋

Beginners to ProNode Js

Visual Guide to API Design Best Practices

This visual eBook covers essential best practices for designing robust APIs using REST principles.

This book is ideal for beginners and backend developers seeking to enhance their API design skills. However, it is not suited for those seeking an in-depth exploration of API design. This book is a quick read under 40 slides like scrolling through your instagram feed.

Visual Guide to API Design Best Practices