Last active
December 18, 2015 12:19
-
-
Save espellcaste/5782055 to your computer and use it in GitHub Desktop.
Imprimir a página em modo landscape.
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<title>Imnpressão</title> | |
<style> | |
@media print{ | |
#print{ | |
width: 100%; | |
height: 100%; | |
margin: 0% 0% 0% 0%; | |
progid: DXImageTransform.Microsoft.BasicImage(rotation=3); | |
page: land; | |
-ms-transform: rotate(-90deg); | |
-webkit-transform: rotate(-90deg); | |
-moz-transform: rotate(-90deg); | |
filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3); | |
} | |
} | |
</style> | |
<!--[if lt IE 9]> | |
<style> | |
@media print{ | |
#print{ | |
writing-mode: tb-rl; | |
} | |
} | |
</style> | |
<![endif]--> | |
</head> | |
<body> | |
<div id="print"> | |
<p> | |
IMPRESSÃO EM MODO LANDSCAPE | |
</p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment