php打印当前页面大小,php – 如何创建A4页面大小的打印视图并修复每页边框

基础:

在CSS打印样式上添加用于打印的媒体查询并使用@page规则

@media print{

@page {

size: auto; /* auto is the initial value */

size: A4 portrait;

margin: 0; /* this affects the margin in the printer settings */

border: 1px solid red; /* set a border for all printed pages */

}

}

have php class for generate this ?

我不认为你真的需要额外的库来做到这一点.但是,可能,你需要一些浏览器兼容性……不是吗?

编辑

要支持IE10,您可能还想添加此规则:

/* IE10+ CSS print styles */

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {

/* IE10+ CSS print styles go here */

@page {

size: auto; /* auto is the initial value */

size: A4 portrait;

margin: 0; /* this affects the margin in the printer settings */

border: 1px solid red; /* set a border for all printed pages */

}

}

您应该只使用CSS来管理自己以打印网站内容.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值