I want to define a CSS class that will provide the same style as HTML's <pre>
element.
I tried this:
.mystyle
{
display: block;
font-family: monospace;
white-space: pre;
}
which works fine on FF but not on IE (white-spaces are not kept). Does anyone have a clue?