Printing cells in a table

  • Thread starter Thread starter Joe
  • Start date Start date
J

Joe

I have a html table with several cells in it. I want to print 2 adjacent
cells from the table. I wasn't sure too sure how to print it so I created
<style type="text/css" media="print">
..noprint {DISPLAY: none}
</style>

I set the class = "noprint" for the cells I don't want printed.

Both cells have a border which ends up making a square. The right most
border gets stretched and doesn't print.

I can't use code behind for this page but thought maybe there is another way
of doing this or maybe someone knows what the problem is.

Thanks.
 
After looking at the print out again, it seems the cells get stretched in
height and width. Is there any way to have it print the exact size as it
appears on the screen?

The actual width and height is: 473 * 350.
 
found the problem. It seems that the style height and width both need to be
set for the cells (td) otherwise things get stretched.
 
Back
Top