http://www.vidyasocks.com/forums.php?id=16&id=16
As you can see here I am having a text overflow issues. What can I do to stop it from overflowing? How would I stop the text at the max width of the container and have it wrap to the next line when the user submits the form?
You need to add
To
div#postcenter > div, so you end up with this:word-wrap: break-wordalways ensures that long, non-breaking words wrap at the end of the line (at least in browsers that support it).