Is it possible to to change a tag (or ) to preformat its contents like a tag would using only CSS?
) to preformat its contents like a tag would using only CSS?
This makes a SPAN look like a PRE:
span { white-space: pre; font-family: monospace; display: block; }
Remember to change the css selector as appropriate.