📜  使用 jquery 在打印页面上创建 fooer - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:48.840000             🧑  作者: Mango

代码示例1
footer {
  font-size: 9px;
  color: #f00;
  text-align: center;
}

@page {
  size: A4;
  margin: 11mm 17mm 17mm 17mm;
}

@media print {
  footer {
    position: fixed;
    bottom: 0;
  }

  .content-block, p {
    page-break-inside: avoid;
  }

  html, body {
    width: 210mm;
    height: 297mm;
  }
}