所以我正在努力让省略号类在某些页面上运行(这是一个解释基本修复的页面:http://www.electrictoolbox.com/ellipsis-html-css/),它适用于IE 6和7,但不适用于IE 8.这里是代码:
.ellipsis {
overflow: hidden;
display: block;
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
-ms-text-overflow: ellipsis;
white-space: nowrap;
_width: 100%;
}
所有发生的事情都是像往常一样的文字包装。有什么建议吗?