Learn free online HTML5, javascript, and jquery Tutorials by Examples

Tuesday 14 February 2017

CSS to set A2 paper size

@page {
    size: A2;
    margin: 0;
}

@media print {
    html, body {
        margin:0 !important;
        padding:0 !important;
        height:100% !important;
    }
} 

No comments:

Post a Comment