text-overflow: ellipsis 在IE8中不能显示省略号的问题

一般标准组合就是: 

overflow: hidden; 
white-space: nowrap; 
-o-text-overflow: ellipsis; /* for Opera */ 
text-overflow: ellipsis; /* for IE */ 

【像<a>这类默认非块的元素,要加上display:block;才有效果:width或者max-width.】

解析:

overflow: hidden;    white-space: nowrap;   这两个属性让起溢出隐藏和不换行

word-berak:break-all;   word-wrap:break-word;   断开属性,导致在IE8里面是不会变成省略号的(但是在IE6/7/FF/Chrome都没有问题),所以不要加

原文地址:https://www.cnblogs.com/miny-simp/p/7060936.html