For most of my posts I use the “Preformatted” style from the drop down menu in the Visual editor of WordPress. It works quite well for demonstrating sections of code or screen output. However, there is a problem with using Preformatted and that is the issue with word wrapping.
Preformatted style in WordPress uses the <pre> HTML tag. The <pre> tag does not word wrap any of the sentences contained within, and if you are using a defined space for displaying the text, as with the theme on my WordPress, you may find that your examples are shortened. Fortunately there is a fix to this problem that requires some minor style tag modifications for the <pre> tags that seem to run off into the distance.
I found a blog post on techguy.org that helped me out…quickly to the point, add:
white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;white-space:pre-wrap;word-wrap:break-word;
to your <pre style=”"> tag and the text should wrap in most browsers.
http://forums.techguy.org/web-design-development/249849-forcing-long-text-lines-wrap.html
I’m out…
use this will be enough:
style=”white-space:pre-wrap;word-wrap:break-word;”