Text Wrapping in Html Pre tag
When using "PRE" tag to show the values in page , if the lines is two it won't wrap in the page it will lead to a page alignment problems.
here is the fix to overcome this problem. i tried this code and checked in major browsers. it works for me
pre {
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /*...
Read more...