css 实现一行超出截取

220 阅读1分钟

移动端不要设置 white-space: nowrap 不折行 和 width 属性,会导致兼容性问题。

html

<div class="shop-name">测试专场一二三四五六七八九十一二三四五六七八九十</div>

css

.shop-name {
  line-height: 0.22rem;
  height: 0.22rem;
  font-size: 0.16rem;
  overflow: hidden;
}