exclude html content when print

Solutions on MaxInterview for exclude html content when print by the best coders in the world

showing results for - "exclude html content when print"
Sara
21 Jul 2019
1put this code in style tag
2@media print
3{    
4    .no-print, .no-print *
5    {
6        display: none !important;
7    }
8}