欧美超薄遮肉裤|古代打板子视频|驴一样的女婿全文免费阅读|无人区卡一卡二入口|动漫视频网站|抖音王大炮资源|色愁愁久久久

????????? 純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>