1.CSS字体渐变色:
background:linear-gradient(to bottom, #fff, #3b7be8);
-webkit-background-clip: text;
color: transparent;
2.字体间距:
如
letter-spacing:15px;
即设置了字与字距离间隔15px([像素]
3.字体超长 用省略号 隐藏
{
width: 450rpx;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
4.首行缩进
{
text-indent:25px
}