How to make gradients that follow text (`background-clip: text`)

Gradient Text Effect
Keywords: Gradients, Text Effect, CSS, Background Clip, Web Design
Description: Learn how to create stunning text effects using CSS gradients and the background-clip property.
<style>
.gradient-text {
  font-size: 4em;
  font-weight: bold;
  background: linear-gradient(45deg, #ff6f61, #6fa3ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
</style>

<div class="gradient-text">Gradient Text Effect</div>

Keywords: Gradients Text Effect CSS Background Clip Web Design