PDA

View Full Version : Suggestion For CSS Addition To This Forum


Acid
11-15-2005, 03:51 PM
The code tags on this forum use the <pre></pre> tags, even in the overflow: auto; div you still get the evil horizontal scrollbars.

You can fix this by adding this to your CSS file which will force the long lines of text inside <pre></pre> tags to correctly wrap:

pre {
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
white-space: pre-wrap;
word-wrap: break-word;
}