Last active
April 20, 2020 14:02
-
-
Save theuves/6d7eb7068ac1da5819b85f3c8489c33b to your computer and use it in GitHub Desktop.
Remover cabeçalho e rodapé de impressão no Chrome.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<style type="text/css"> | |
@media print{ | |
@page { | |
size: landscape; | |
margin: 0mm; | |
} | |
body { | |
margin: 10mm 15mm 10mm 15mm; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Hello, world!</h1> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment