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.

The content of a <div> element, if it has no spaces, overflows outside the container.

Is there a trick to fix this with a new line, on all browsers?

For example:

<div style="width: 500px;">

    <div style="border: 1px solid #000;">
        <p>http://www.trendn.com/timthumb.php?src=http%3A%2F%2Fwww.blogcdn.com%2Fwww.engadget.com%2Fmedia%2F2011%2F04%2F11x0419n873422_thumbnail.jpg</p>
    </div>

</div>

Thanks

share|improve this question
If you could add some context (markup/css) that demonstrates your issue, that would be helpful. – Jared Farrish Apr 19 '11 at 23:52
Question updated with an example. There's a border to see the overflow. – Mark Apr 19 '11 at 23:58
Yeesh. If you want all the content to display just on different lines, use thirtydot's css. – Jared Farrish Apr 20 '11 at 0:01

3 Answers

up vote 2 down vote accepted

If I understand correctly: (not sure that I do, as I'm posting a different answer to those already here)

Use the white-space property (or an equivalent property for IE).

#divElement {
    word-wrap: break-word;      /* IE 5.5-7 */
    white-space: -moz-pre-wrap; /* Firefox 1.0-2.0 */
    white-space: pre-wrap;      /* current browsers */
}

See here: http://jsfiddle.net/thirtydot/RE5uG/

share|improve this answer
It's very likely you're right. – Jared Farrish Apr 19 '11 at 23:51
1  
Using thirydot's jsfiddle applied to Marco's supplied markup/style: jsfiddle.net/userdude/RE5uG/3 – Jared Farrish Apr 20 '11 at 0:12
@Jared Farrish: Thanks for helping to make it clearer :) – thirtydot Apr 20 '11 at 0:16

use CSS overlflow with 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.