基础:
在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来管理自己以打印网站内容.