1.CSS字體漸變色:
background:linear-gradient(to bottom, #fff, #3b7be8);
-webkit-background-clip: text;
color: transparent;
2.字體間距:
如
letter-spacing:15px;
即設(shè)置了字與字距離間隔15px([像素]
3.字體超長(zhǎng) 用省略號(hào) 隱藏
{
width: 450rpx;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
4.首行縮進(jìn)
{
text-indent:25px
}