I have a bootstrap row with a set of divs inside like this:
@media print {
p { page-break-after : always }
}
<div class = "row">
<div> data1 </div>
<p> break page here </p>
<div> data2 </div>
<div>
The issue here is that the page break is not functioning inside the bootstrap row. Can anyone assist me with this or suggest an alternative solution?