我有以下CSS:
@@media only print {
@@page {
size: A4 landscape !important;
margin-top: 0mm !important;
margin-bottom: 0mm !important;
}
#tblPrint tbody tr:nth-child(even) {
background-color: #ededed !important;
}
* {
-webkit-print-color-adjust: exact !important;
}
}
问题如下:
。
我需要的解决方案是强制我的CSS指定的属性覆盖浏览器的打印首选项,而不需要用户指定纸张大小、方向和检查所有浏览器的浏览器打印首选项中的“背景图形/打印背景颜色和图像”,请帮助!
发布于 2019-11-06 09:47:22
添加样式表的底部
css
@media print {
body{ background-color:#000;}
}
https://stackoverflow.com/questions/58726057
复制相似问题