7

Is there a way to use CSS hide a word at a time (instead of a letter at a time) when an element isn't wide enough to show it's text content?

For example, with the following code, when the browser window gets to narrow to show the entire sentence, I want it to show Lorem ipsum dolor sit... instead of Lorem ipsum dolor sit ame...

HTML:

<div>Lorem ipsum dolor sit amet</div>

CSS:

div { overflow:hidden; text-overflow:ellipsis; white-space-nowrap; }

(I don't need to support old browsers)

4

1 回答 1

5

您始终可以强制容器与单行文本具有相同的高度,并使用overflow: hidden.

/* hide one word at a time */

p.short {
    height: 18px;
    overflow: hidden; }

/* display an ellipsis "..." */

p.ellipsis { 
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

http://jsfiddle.net/Wexcode/fbhxL/

于 2013-10-28T02:01:14.837 回答