Add dots/ellipsis on div/span element overflow without using jquery

前端 未结 5 1004
萌比男神i
萌比男神i 2021-02-04 06:58

Need to implement functionality similar to what dotdotdot jQuery plugin does but cannot use javascript frameworks (like jquery or ext).

Is there an

5条回答
  •  伪装坚强ぢ
    2021-02-04 07:10

    FOR ALL Browser:

    .dotdot{ white-space: nowrap; text-overflow: ellipsis; overflow: hidden; max-width:80px}
    .dotdot:before { content: '';}
    
    
    [Button Text Goes here][1]

提交回复
热议问题