答案 0 :(得分:0)
你需要为打印媒体写css正常css在这里不起作用。 这些步骤也是如此
创建名为print.css
从普通样式表复制css类,但只有上面布局中使用的那些类不是全部。
隐藏那些你不想在印刷品上展示的部分。
喜欢
.navigation, header, footer{display :none!important;}
现在将此css文件包含在具有额外属性i的视图文件中。即screen="print"
所以完整路径看起来像这样。
<link href="path/to/print.css" screen="print" />
或者你只需将所有css类放在主文件中的媒体查询下即可。
比如@media(print){
// all your css classes that involves in your layout and extra css to hide div that you dont want
}