show div only when printing

后端 未结 8 2201
清歌不尽
清歌不尽 2020-12-19 02:01

Let\'s say that I have

Title

Printing content

8条回答
  •  长情又很酷
    2020-12-19 02:27

    You need media query for switching between print and screen option

    @media screen { /* for screen option*/
    
    p {
    
          font-family: verdana, sans-serif;
    
          font-size: 17px;
    
      }
    
       }
    

    @media print { /* for print option*/

     p {
    
         font-family: georgia, serif;
         font-size: 14px;
         color: blue;
       }
    
      } 
    

    http://www.w3schools.com/css/css_mediatypes.asp

提交回复
热议问题