I was looking into JSPWiki printing issues on FF and IE, running into
following issue.
( https://issues.apache.org/jira/browse/JSPWIKI-128 )
Here is the html :
{{{
<h2>some header </h2>
First part of the text has no tags around it ...
<div class="commentbox">
Here is a commentbox
</div>
More text is comming here after.
}}}
Here is the css for commentbox
{{{
.commentbox { float : left; }
}}}
This renders perfecty on various browsers: Safari, Opera, Mozilla.
However, Firefox (also Camino) freak out: printing yields an blank page !
Removing the float style resolves the problem.
Apparently, having float elements subsequent to html #text elements
seems to give problems.
One rough measure is just remove all foats from printed pages.
Any other suggestions ?
dirk