faqts : Computers : Internet : Web : CSS

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

5 of 28 people (18%) answered Yes
Recently 1 of 10 people (10%) answered Yes

Entry

How can I print all rows (up to the end) of a scrollable table even w/ rows not displayed on screen.
How to print the content of a scrollable table (IE5.5)?

Sep 30th, 2003 05:14
vijay vijay, Kady Ny,


I use media=print and media=screen. In my print.css, I have 
.tbl {
visibility: visible ;
}
but it still doesn't print all the rows of the table for me. It just 
prints what are visible to the screen (the first 20 rows).
My idea...
--------
for IE you can also use :
onBeforePrint event and make the table style, usually overflow:scroll 
to overflow:none and set the height property to default.