当文字超出时用胜率号代替
<p>这是一段超出内容的话,必须要超出才会出现省略号</p>
p{ width: 200px; height: 20px; line-height: 20px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
让文字的颜色为渐变
<p>我需要成为渐变色</p>
p{ width: 200px; background: linear-gradient(to right, red, blue); webkit-background-clip: text; color: transparent; }