Is it possible to have text-overflow: ellipsis without white-space: nowrap?

女生的网名这么多〃 提交于 2019-11-29 02:33:10

问题


It seems that text-overflow: ellipsis is dependent on white-space: nowrap. The problem with this is that it limits the text to one line. However, what if I need to have 4 lines, and the ellipsis on the last line in the case of overflow?

What it's currently doing...

Lorem ipsum dolor sit amet ...

What I want...

Lorem ipsum dolor sit amet, 
consectetur adipisicing el-
it, sed do eiusmod tempor  
incididunt ut labore et ...

回答1:


Unfortunately the behavior you are seeing is correct for text-overflow: ellipsis.

Cross-browser support for hyphenated text is not a reality yet with CSS only, but you can see a good roundup of what's possible here: http://code.google.com/p/hyphenator/wiki/en_CSS3Hyphenation

Some browser-specific CSS is available for firefox and webkit browsers:

-webkit-hyphens: auto;
-webkit-hyphenate-character: '~';
-moz-hyphens: auto;

The big issue with hyphenation is that it needs to be language aware to work properly, which is tricky.

Maybe a JS solution like this will help you? http://code.google.com/p/hyphenator/



来源:https://stackoverflow.com/questions/8068552/is-it-possible-to-have-text-overflow-ellipsis-without-white-space-nowrap

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!