* 星號的居中 文本處理樣式的總結


常用樣式 

 

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

 默認:

修改后

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM