常用样式
.xl_word 文字溢出处理
.xl_line 下划线
.xl_point 手型
1 .xl_word{ 2 display: inline-block; 3 overflow: hidden; 4 white-space: nowrap; 5 text-overflow: ellipsis; 6 } 7 8 .xl_line{ 9 text-decoration: underline; 10 } 11 12 .xl_point{ 13 cursor: pointer; 14 }
*号对齐
1 .themeT:before { 2 content: "*"; 3 color: red; 4 font-size: 14px; 5 height: 10px; 6 width: 20px; 7 height: 20px; 8 display: inline-block; 9 vertical-align: middle; 10 text-align: center; 11 line-height: 23px; 12 }
默认:
修改后