I have some tabular content that is held within a div thus..

<div class="someDiv">
   <table>
       <tr>...</tr>
       ....
       ....
       <tr>...</tr>
   </table>
</div>

When I print using a print stylesheet with all items set to float:none !important; and height:auto !important; the table will only print one page worth of information as opposed to about 10 or so.

Has anyone come across this before?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

The fix was to add

* { overflow:visible ! important; }
link|improve this answer
feedback

Could it be as simple as CSS syntax?

I see in this old article (where I first heard of this) they have a space between the exclamation point and the word important.

I also see a space here (section 3.1 is about important).

Does your CSS code have that space?

link|improve this answer
Good spot, the change didn't fix that but I will remember to put the space in from now on. – Toby Nov 30 '10 at 15:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.