Cool
Cool
Published on 2022-07-12 / 15 Visits
0
0

css文字渐变

代码

<!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
      <style>
        .text-gradient {
          background-image: linear-gradient(to right, orange, purple);
          -webkit-background-clip: text;
          color: transparent;
          font-size: 30px;
        }
      </style>
    </head>
    <body>
      <span class="text-gradient">文字渐变</span>
    </body>
    </html>

效果

.text-gradient { background-image: linear-gradient(to right, orange, purple); -webkit-background-clip: text; color: transparent; font-size: 30px; } 文字渐变

Comment