Last active
April 28, 2020 17:29
-
-
Save PRElias/a679b2db17be2d6dca2f39b1eab39931 to your computer and use it in GitHub Desktop.
CSS bloqueando impressão do browser
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
@media print { | |
body > *:not(#container) { | |
display: none; | |
} | |
body:after { | |
content: str-insert($string: "Para imprimir é necessário utilizar o botão em tela", $insert: "", $index: 0); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment