css不换行、超出省略、超行自动缩小行高

【不换行】

white-space: nowrap;

【超出长度显示省略号】

overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;

【超行自动缩小行高】

<div class="father">
    <span class="child"><span>
</div>

.father {
  height: 1.4rem;
  line-height: 1.4rem;  
}
.child {
  display: inline-block;  
  line-height: 0.7rem; 
  vertical-align: middle;
}

 示例

 

posted @ 2020-06-12 14:29  酒精不添加  阅读(1542)  评论(0)    收藏  举报