@Media print css

前端 未结 2 1371
北恋
北恋 2020-12-02 01:13

I have my HTML page with this structure:





   
2条回答
  •  盖世英雄少女心
    2020-12-02 01:28

    You can you @media print and @media screen to define what will be printed and what will be shown on screen.

     @media print {
           .to-print {
               --css to show content--
           }
     }
    
     @media screen {
           .to-print {
               --css to not show content--
           }
     }
    

    or

    Create a new css and include like this:

      
    

提交回复
热议问题