I create page number that using counter
property in css am trying to put it in the end of the page and I need to use pure css
this is my CSS:
@media print {
table.break {
page-break-after: left;
}
body {
counter-reset: table;
}
table::after {
counter-increment: table;
content: "page"" "counter(table);
}
.no-print, .no-print * {
display: none;
}
}