Created
April 28, 2020 17:29
-
-
Save PRElias/787f08cbf6652ad04f54b7bccc601ed7 to your computer and use it in GitHub Desktop.
Ajustes mais comuns para impressão
This file contains 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
/* Removendo cabeçalho e rodapé automático de impressão */ | |
@page { | |
margin: 0; | |
} | |
body { | |
color: #000; | |
background-color: #fff; | |
} | |
div { | |
margin: 1rem auto; | |
padding: 1rem; | |
max-width: 38rem; | |
max-height: 100rem; | |
border: 2px; | |
border-style: solid; | |
} | |
article { | |
column-width: 17em; | |
column-gap: 3em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment