Skip to content

Instantly share code, notes, and snippets.

@theuves
Last active April 20, 2020 14:02
Show Gist options
  • Save theuves/6d7eb7068ac1da5819b85f3c8489c33b to your computer and use it in GitHub Desktop.
Save theuves/6d7eb7068ac1da5819b85f3c8489c33b to your computer and use it in GitHub Desktop.
Remover cabeçalho e rodapé de impressão no Chrome.
<!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