2013-08-29 103 views
4

我想使用ellipsis來截斷一些長文本。帶省略號和nowrap空格的textwrap

但是,在我目前的實施中,它不包含會導致超出div的額外字數,並且不會顯示ellipsis來指示文本被切斷。

我在做什麼錯?

http://jsfiddle.net/sw6Sp/6/

<div class="testWrap">This is some very long text that I want to cut off </div> 

.testWrap{ 
    max-width: 125px; 
    height:15px; 
    overflow: hidden; 
    text-overflow:ellipsis; 
    border: 1px solid black; 
} 
+0

http://www.w3schools.com/cssref/tryit.asp?filename=trycss3_text-overflow_hover ?? ?? –

+0

你還沒有更新你的jsfiddle呢... –

回答

4

添加CSS規則white-space: nowrap;應該解決您的問題。

<div class="testWrap" style=" 
    max-width: 125px; 
    height:15px; 
    overflow: hidden; 
    text-overflow:ellipsis; 
    border: 1px solid black; 
    white-space: nowrap; 
">This is some very long text that I want to cut off </div>