|
Kitka -> RE: Why does the color leak outside of the table? (5/11/2006 16:35:25)
|
I did a print preview in Firefox and all the coloured cell backgrounds disappeared, rather than leaking. I didn't actually print it, so I don't know if that would have followed through. However, in your code I notice that the cell colour codes are missing the hash (#) in front. e.g. <td width=200 bgcolor="F3CF71">
<td width=200 bgcolor="1E477A">
<td width=200 bgcolor="932433">
<td width=200 bgcolor="D1DEF2"> Try changing all those to these: <td width="200" bgcolor="#F3CF71">
<td width="200" bgcolor="#1E477A">
<td width="200" bgcolor="#932433">
<td width="200" bgcolor="#D1DEF2"> Just maybe, it will assist with your print problem.
|
|
|
|