IE9文本溢出:省略号;不使用text-align:center;

时间:2013-04-30 13:09:30

标签: css internet-explorer-9 text-alignment ellipsis css3

IE9 text-overflow: ellipsis; problem with text-align: center;

正如您所看到的,第一个.覆盖了最后一个6,而且仅限于IE9

有任何解决方法吗?

注意:

<div class="truncate">666</div>

div { text-align: center; /* NOTE: The text should be on center. */ }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

http://jsfiddle.net/MvaGe/4/

1 个答案:

答案 0 :(得分:0)

如果您设置了word-wrap: bread-word,请将其更改为word:wrap: normal。它对我有用。