css实现文字过长显示省略号的方法

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

  前提是display:block
  可以用mixin封装一下,在stylus或者less中调用

ellipsis()
  overflow: hidden
  white-space: nowrap
  text-overflow: ellipsis

  

posted @ 2018-10-30 18:36  gaoxuerong  阅读(3684)  评论(0编辑  收藏  举报