crabbly / Print.js

A tiny javascript library to help printing from the web.
MIT License
4.28k stars 672 forks source link

How to cancel header and footer? #636

Open sheep5250 opened 2 years ago

sheep5250 commented 2 years ago

When I don't want to print headers and footers, I used "style:'@page{margin:7mm 7mm}'. But some computers can work and some computers can't

goldingdamien commented 2 years ago

@sheep5250 Have you tried these? https://stackoverflow.com/questions/8228088/remove-header-and-footer-from-window-print

2simguy commented 2 years ago

I used the code below to remove it from Chrome

printJS({ printable: url, type: type, style: @media print { @page { margin: 0; } body { margin: 1.6cm; } }, });

zshsir commented 2 years ago

style: @page {size: auto;margin:0 0mm;}