When Internet Explorer encounters a tag with the style white-space:pre
inside a table, it will only print the first line even though it renders properly in the browser.
Give the following html in a HTML 4.0 transitional document IE will display both lines of text in the browser, but when you print it will only show the first line.
[html]
<table border="0"><tr><td>
<p style="white-space:pre;">
line 1 of text
line 2 of text
</p>
</td></tr></table>
[/html]
Affected Browsers