-
Notifications
You must be signed in to change notification settings - Fork 4
Home
DaiDH edited this page Jun 23, 2023
·
2 revisions
@media print {
a::after {
content: ' (' attr(href) ') ';
}
}<!-- Normal mode -->
<a href="https://getfrontend.tips">Front-End Tips</a>
<!-- Print mode -->
<a href="https://getfrontend.tips">Front-End Tips (https://getfrontend.tips)</a>https://pagedjs.org/documentation/5-web-design-for-print/ https://developer.mozilla.org/en-US/docs/Web/CSS/@page/size
style.css
@media print {
/* Use A4 paper in landscape orientation */
@page {
size: A4 landscape;
}
}