首页 > 其他 > 详细

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

时间:2019-04-11 21:09:38      阅读:614      评论:0      收藏:0      [点我收藏+]

常用样式 

 

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

 默认:技术分享图片

修改后技术分享图片

 

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

原文:https://www.cnblogs.com/s-xl/p/10692162.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!