Skip to content

TIL: Set page margins to 0 on print preview

How to remove page margins when printing

1 min read

Just add this CSS code to your app:

SCSS
@media print {
@page {
margin: 0;
}
}

Print preview:

Print preview with default page margins Print preview with page margins removed
Default margins No margins

More notes connected by topic, not algorithmic noise.