Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图找出为什么@media print不能在 Chrome 上运行。IE和FF都可以。
@media print
我正在打印优惠券的打印页面,但 Chrome 正在打印空白页面。
你在使用分离的CSS吗?
尝试在页面内嵌入 css 以查看问题是否仍然存在。
下面的示例似乎在同一页面中工作:
<style type="text/css"> @media print{ .button {display : none} } </style>