Hi,
I am trying to print a single table on a webpage that has about 5 tables on it.
i am using this code in my style sheet:
table {display: none;}
#printTable {display: block;}
and i am linking the style sheet using this code:
<link rel="stylesheet" media="print" href="print.css">
Here is the table id that i am using:
<table id="printTable">
When i print out the webpage using this code, i get nothing but a blank page. Not sure what i am doing wrong.
I am trying to print a single table on a webpage that has about 5 tables on it.
i am using this code in my style sheet:
table {display: none;}
#printTable {display: block;}
and i am linking the style sheet using this code:
<link rel="stylesheet" media="print" href="print.css">
Here is the table id that i am using:
<table id="printTable">
When i print out the webpage using this code, i get nothing but a blank page. Not sure what i am doing wrong.