1.文本从左至右颜色渐变
效果图:
2.边框从左至右颜色渐变
效果图:
实现代码:
1.文本从左至右颜色渐变实现代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
text {
background: linear-gradient(to right, #ffcc99, #814e38);
-webkit-background-clip: text;
color: transparent;
font-size: 50px;
}
</style>
</head>
<body>
<text>文字颜色渐变</text>
</body>
</html>
2.边框从左至右颜色渐变实现代码: