背景渐变色
background: -webkit-linear-gradient(left, #85169F , #FB7564); /* Safari 5.1 - 6.0 */
background: -o-linear-gradient(right, #85169F, #FB7564); /* Opera 11.1 - 12.0 */
background: -moz-linear-gradient(right, #85169F, #FB7564); /* Firefox 3.6 - 15 */
background: linear-gradient(to right, #85169F , #FB7564); /* 标准的语法(必须放在最后) */
文字渐变
background: linear-gradient(to bottom, white, rgb(125,220,246));
-webkit-background-clip: text;
color: transparent;