Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a long text and I want to hide that part if it is longer than the div.

share|improve this question
overflow:hidden ? – Pete Wilson Sep 4 '11 at 10:14

3 Answers

up vote 4 down vote accepted

Set the div with a width, (otherwise it wont know what overflow is). Then, set css to overflow:hidden;

Remember to position the element relative (position:relative) so that IE knows how to deal with it.

I wouldnt use ellipsis, as its not fully cross browser compatible

Demo is here http://jsfiddle.net/vxN8v/1/

share|improve this answer

use text-overflow: ellipsis;. Note that the containing element needs an explicit width in order for ellipsis to take effect, and you won't get an ellipsis in Firefox.

share|improve this answer

Try this :

 div{
  text-overflow: hidden;
} 

Assign some width to div so that if your text flow out of that box will get hidden.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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