Element should be hidden in media screen while include it when user want to print the page.
I use this CSS code but not working.
@media screen {
    th .hide {
      display: none;
    }
}
@media print {
    th .hide {
        border: 1px solid #000; 
        padding: 0.5em;
    }
}
html is like this:
<table>   
    <tr>
        <th class="hide" > Office:    
    </tr>
</table>
 
     
     
    