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've got a div where the content of the div "escapes" the div.

if for example i put in something like ssssssssssssssssssssss (and so on :P) it just goes over the divs edge instead of breaking and continuing on the next line.

css:

#content {
 position:absolute;
 width: 855px;
 padding: 195px;
 padding-top: 0px;
share|improve this question

2 Answers

up vote 4 down vote accepted

Add the following to the CSS:

word-wrap: break-word;

Also see https://developer.mozilla.org/en/CSS/word-wrap

share|improve this answer
1  
For the browsers which doesn't support it (the ancient ones), you may want to consider to add an overflow-x:scroll; though. – BalusC May 6 '10 at 14:34

Set the overflow property:

http://www.w3schools.com/Css/pr_pos_overflow.asp

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.