I have table data and last column contains links for actions on that data. I would like that last column not visible when someone prints the page.
I tried the following and it works on screen (don't see last column, and rest of the columns are evenly spread to fill that space).
@media print {
table td:last-child {display:none}
}
But it doesn't work for print: I don't see the column, but there is empty space where it was.
This works for me:
@media print {
table td:last-child {display:none}
table th:last-child {display:none}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With