Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Print elements with backgroud color

Status
Not open for further replies.

kaeserea

Programmer
Feb 26, 2003
164
DE
Hi there!

I have a table with background color. It looks alright on screen. But the color isn't printed. (Yes I have a color printer ;-) ) I tried it with and without css. Doesn't make a difference.

Here's the code with css:
[tt]
<table>
<tr>
<td style="background-color:#00FFFF">Mytext</td>
</tr>
</table>
[/tt]

Here's the code without css:
[tt]
<table>
<tr>
<td bgcolor="#00FFFF">myText</td>
</tr>
</table>
[/tt]

Does anybody know why? Or how to make the printer print the cell's background color?

Best regards
Eva
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top