Tutorial Make “Pre” Text Wrap
Text in tags doesn't wrap by default. For example, see the code snippet below! If this is causing layout problems, one solution is to g...
https://iskablogs.blogspot.com/2014/03/tutorial-make-pre-text-wrap.html
Text in
tags doesn't wrap by default. For example, see the code snippet below! If this is causing layout problems, one solution is to give the pre block an overflow property to hide the excess or cause it to scroll. The other solution is to have it wrap.
/* Browser specific (not valid) styles to make preformatted text wrap */
pre {
white-space: pre-wrap; /* css-3 */