Wrapping pre-formatted text
I haven’t notitced that the long lines of my code blocks weren’t wrapping properly in firefox. In Safari everything was just fine. Adding these few lines to the css stylesheet should do the trick.
pre {
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
Glad I found that on this website.