彩虹色彩文字的代码
外建css方法:<style>
.chtext {
font-weight: bold;
text-decoration: none;
background: linear-gradient(to right, #ff3333, #ff9900, #ffdd00, #33cc33, #0099ff, #9933ff);
-webkit-background-clip: text;
color: transparent;
font-size: 32px;
}
</style>
<p class="chtext">彩虹色彩文字的代码</p>
内建HTML方法:
<p style="font-weight:bold; text-decoration:none; background:linear-gradient(to right, #ff3333, #ff9900, #ffdd00, #33cc33, #0099ff, #9933ff); -webkit-background-clip:text; color:transparent; font-size:32px;">彩虹色彩文字的代码</p>
页:
[1]