← Back to Posts

control print on new page with css

👤 علی ذوالفقار 📅 1401/09/06 14:33:37 👁️ 388 views

@media print {
    .pagebreak {
        clear: both;
        page-break-after: always;
    }
}

or page-break-before: always;
< div class="pagebrake" >
← Back to Posts