纯CSS打造彩虹字

98 阅读1分钟
.color {
  color: transparent;
  background: conic-gradient(
    #f72f35 12%,
    #30c5ff 12%,
    #30c5ff 35%,
    #fed700 35%,
    #fed700 55%,
    #ff6984 55%,
    #ff69b4 70%,
    #d1e231 70%,
    #d1e231 90%,
    #d09ee1 90%
  );
  background-size: 50%;
  background-clip: text;
  -webkit-background-clip: text;
}
<span class="color" style="font-weight: bolder; font-size: 180px">I LOVE CHINA</span>