break text at a size

liunx

Guest
how would i break text at a given width?If I understand you correctly, simply put the text in a containing block, such as a <div> tag, sized to the appropriate width. For example:

<div style="width: 20em">
<p>Your text here.</p>
</div>

Adamacually, more like:
<p style="max-width:Xpx;"></p>
but of course, wont work in ie very well :(
 
Back
Top