????????? 純CSS實現彩色漸變文字 ?????????

純CSS實現彩色漸變文字

<style type="text/css">
  .colourText {
    font-size: 120px;
    display: inline;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, blue, red);
  }
</style>
<p class="colourText">這里的文字會變成彩色漸變</p>