我有很大的图像,打印时会缩小到页面宽度
<img style="width:1300px" ... />
如何避免缩容?我要他们在边境线上被剪掉
发布于 2016-04-11 19:45:04
就像@Tivie answered here:你可以尝试使用@page css规则。例如:
@page { margin: 0; }
https://stackoverflow.com/questions/36547691
相似问题