Fix pre text formatting and overflow

Don't visually break `pre` text over multiple lines.

Trigger a scrollbar when the preformatted text is too wide for its
container.
This commit is contained in:
Nicolas Gallagher 2014-01-24 22:04:39 -08:00
parent 37ea6ae187
commit a8edd0c5aa

4
normalize.css vendored
View File

@ -172,11 +172,11 @@ samp {
}
/**
* Improve readability of pre-formatted text in all browsers.
* Contain overflow in all browsers.
*/
pre {
white-space: pre-wrap;
overflow: auto;
}
/**