数字字母连串换行
word-break: normal;
word-break: break-all;
word-break: keep-all;
颜色渐变
background: -webkit-linear-gradient(top,#ffffff,#f5f5f5);
background: -moz-linear-gradient(top,#ffffff,#f5f5f5);
background: -webkit-gradient(linear, top, bottom,from(#ffffff),to(#f5f5f5));
background: linear-gradient(top,#ffffff,#f5f5f5);
background: -ms-linear-gradient(top,#ffffff,#f5f5f5);
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#ffffff, endColorstr=#f5f5f5);
background: -webkit-linear-gradient(left,#41caf4,#5399f6);
background: -moz-linear-gradient(left,#41caf4,#5399f6);
background: -webkit-gradient(linear,left top,right top,from(#41caf4),to(#5399f6));
background: linear-gradient(left,#41caf4,#5399f6);
background: -ms-linear-gradient(left,#41caf4,#5399f6);
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr=#41caf4, endColorstr=#5399f6);
透明度
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=40);
filter:alpha(opacity=40);
opacity:0.4;
滚动条样式
*::-webkit-scrollbar{width:6px;height:9px;border-radius:10px;}
*::-webkit-scrollbar:hover{background-color:#082040;background-color: transparent;}
*::-webkit-scrollbar-thumb:vertical:hover{background-color:#108de2;display: block;}
*::-webkit-scrollbar-button:start:decrement,
*::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
*::-webkit-scrollbar-thumb:vertical{height:50px;background-color:#108de2;border-radius:10px;}
超出省略号显示
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;