Monday, December 28, 2015

html a3 landscape print

http://www.w3schools.com/css/css3_borders.asp

http://stackoverflow.com/questions/12371822/how-can-i-print-an-image-in-a-web-page-fitting-the-paper-size-a3-a4-a5-etc/

<html>
<head>
<style type="text/css" media="print">
   @page Section1
    {size:11 8.5in;
    margin:.5in 13.6pt 0in 13.6pt;
    mso-header-margin:.5in;
    mso-footer-margin:.5in;
    mso-paper-source:4;
   border-radius: 25px;
    border: 2px solid #73AD21;
    padding: 20px;
    width: 11in;
    height: 8.5in;

}
div.Section1
    {page:Section1;

   border-radius: 25px;
    border: 2px solid #73AD21;
    padding: 20px;
    width: 11in;
    height: 8.5in;

}
</style>
</head>
<body>

<div class="Section1"> put  text / images / other stuff  </div>

</body>
</html>