I have a card view for report and I want to display each card on each page when the report gets printed. I was trying to achieve this by using the page-break css.
.card-view {
page-break-after: always;
page-break-inside: avoid;
}
But this is not working as expected. The card view breaks inside. I tried to fix this as mentioned here, but even that is not working for me.
page-break works on edge but why isn't it working on Chrome? Is there any alternative way to get this done?