常用样式 

 

.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 }

 默认:*  星号的居中 文本处理样式的总结

修改后*  星号的居中 文本处理样式的总结

 

相关文章:

  • 2021-11-23
  • 2021-11-29
  • 2022-12-23
  • 2021-10-09
  • 2021-12-31
  • 2021-07-25
  • 2022-01-16
  • 2021-12-31
猜你喜欢
  • 2021-11-23
  • 2021-09-27
  • 2021-07-06
  • 2022-12-23
  • 2021-09-19
  • 2021-05-17
  • 2021-05-18
相关资源
相似解决方案