Skip to content

Instantly share code, notes, and snippets.

@espellcaste
Last active December 18, 2015 12:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save espellcaste/5782055 to your computer and use it in GitHub Desktop.
Save espellcaste/5782055 to your computer and use it in GitHub Desktop.
Imprimir a página em modo landscape.
<!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&atilde;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