javascript - @media print css not formatting table on printing -
i have simple table button below it. in body section of jsp below: <div id="mydivforprint"> <table class="t1"> <tbody> <tr> <th>one</th> <th>two</th> <th>three</th> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> </tr> <tr> <td>4</td> <td>5</td> <td>6</td> </tr> </tbody> </table> </div> <button onclick="printdiv()">print</button> below css @media rule supposed format table. css in head section of jsp: @media print...