ID:887946
 
(See the best response by A.T.H.K.)
Problem description: Does anyone know the HTML Word Wrap code? I can't find what it is...
Typically you just need to set a width in the container to cause text to wrap. If you want to force a particularly long word to wrap, Hassanjalil's link should work.
I still don't really understand it? I'm a noob when it comes to HTML.
In response to Flysbad
A container, like div or span. You can set their width.
A container is a < and a > right? I still don't know what Div or Span is. but is it like <span width=200px> ?
In response to Flysbad
Best response
Flysbad wrote:
I still don't really understand it? I'm a noob when it comes to HTML.

You should be able to do it like this

<div style="width: 200px;word-wrap: break-word;">
all the contents go here
</div>
Thanks A.T.H.K
No problem Flysbad, you should look into Margin's and Floats you can do some really cool stuff with CSS :)