How to only show certain parts with CSS for Print?

后端 未结 6 657
悲&欢浪女
悲&欢浪女 2020-11-27 20:22

I have a page with lots of data, tables and content. I want to make a print version that will only display very few selected things.

Instead of writing another page

6条回答
  •  渐次进展
    2020-11-27 20:52

    I suggest to hide the element that you won't print:

    HTML

    Welcome Just Screen

    I want print this section :)
    It's display only on screen

    CSS

    @media print {     
        .no-print {
            display: none;
        }
    }
    

提交回复
热议问题