PdfCSS:APRJA Minor Tech: Difference between revisions

From creative crowd wiki
Jump to navigation Jump to search
(Created page with "→‎turning off pads: div.pad { display: none; }")
 
No edit summary
Line 1: Line 1:
/* turning off pads */
/*------------------page rules */
@page{
 
    @bottom-left{
        content: counter(page);
    }
}
 
 
/*------------turning off pads */
div.pad {
div.pad {
     display: none;
     display: none;
}
}

Revision as of 13:46, 23 May 2023

/*------------------page rules */
@page{

    @bottom-left{
        content: counter(page);
    }
}


/*------------turning off pads */
div.pad {
    display: none;
}