Hide buttons when printing

前端 未结 3 746
醉梦人生
醉梦人生 2021-02-02 13:14

I have a page which contains at the bottom 3 buttons with the following coding:

3条回答
  •  花落未央
    2021-02-02 14:04

    You can use a css media query to target print:

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

提交回复
热议问题