Printing html ignores CSS stylesheets

前端 未结 3 1327
礼貌的吻别
礼貌的吻别 2021-01-11 16:48

I have a very simple html page with a table element.

The document is styled with css. When I print the page it looks like there are no stylesheets at all. Wrong fon

3条回答
  •  萌比男神i
    2021-01-11 17:21

    If your stylesheet link has media="screen", then it will be ignored by print. In that case you can create a separate print stylesheet with media="print" or just change your existing style sheet to media="all".

提交回复
热议问题