<div style="display:inline-block;width:100px;">

very long text
</div>

any way to use pure css to cut the text that is too long rather than show on next new line and only show max 100px

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted
<div class="crop">longlong longlong longlong longlong longlong longlong </div>​

This is one possible approach i can think of

.crop {width:100px;overflow:hidden;height:50px;line-height:50px;}​

This way the long text will still wrap but will not be visible due to overflow set, and by setting line-height same as height we are making sure only one line will ever be displayed.

See demo here and nice overflow property description with interactive examples.

link|improve this answer
feedback

You can use:

overflow:hidden

to hide the text outside the zone.

Note that it may cut the last letter (so a part of the last letter will still be displayed). There is no pure-CSS way to cut the text letter-by-letter.

link|improve this answer
+1, my thoughts exactly – rebus Sep 12 '10 at 15:51
feedback
.crop { 
  overflow:hidden; 
  white-space:nowrap; 
  text-overflow:ellipsis; 
  width:100px; 
}​

http://jsfiddle.net/hT3YA/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.