mirror of
https://github.com/wassname/template.git
synced 2026-06-27 21:39:13 +08:00
21 lines
244 B
CSS
21 lines
244 B
CSS
|
|
@media print {
|
|
@page {
|
|
size: 8in 11in;
|
|
}
|
|
html {
|
|
}
|
|
p, code {
|
|
page-break-inside: avoid;
|
|
}
|
|
h2, h3 {
|
|
page-break-after: avoid;
|
|
}
|
|
dt-header {
|
|
visibility: hidden;
|
|
}
|
|
dt-footer {
|
|
display: none!important;
|
|
}
|
|
}
|