* 星号的居中 文本处理样式的总结
常用样式
SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。
.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 }
更多精彩