App以及微信小程序一行超过文本宽度用省略号代替

App

css代码

 width: 100%;   /*一定要设置宽度,或者元素内含的百分比*/
  overflow:hidden; /*溢出的部分隐藏*/
  white-space: nowrap; /*文本不换行*/
  text-overflow:ellipsis;/*ellipsis:文本溢出显示省略号(...);clip:不显示省略标记(...),而是简单的裁切*/

微信小程序

wxss代码

width: 40%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;

猜你喜欢

转载自blog.csdn.net/wsxDream/article/details/111295351