I am wondering how to print the html table background color on printer, for example I have html table:
<table border="2">
<tr>
<td bgcolor="#3333FF"> </td>
<td> </td>
<td> </td>
</tr>
</table>
From browser I can see backgound color, however if I print it out, the color is gone, is there a way to print this color out?
Thanks for any response.