I want to add block which should always be at the bottom of web page as well as print page. I achieved that by this code.
For that, I followed this https://stackoverflow.com/a/8825714/6536977 and it's working fine in web page as well as print page, But the only problem is when there are 2 or more than 2 pages in print page, the footer in not placed at the bottom.
Here is my code
.thank_you_message {
height: 50px;
width: 100%;
position: absolute;
left: 0;
bottom: 0;
border-top: 1px solid #388acf;
display: table;
}
.thank_you {
margin: 0 auto;
max-width: 800px;
display: table-cell;
}
.invoice-box {
max-width: 800px;
margin: auto;
position: relative;
padding-bottom: 60px;
}
.invoice-box table {
width: 100%;
line-height: inherit;
text-align: left;
}
#holder {
max-width: 800px;
margin: auto;
border: 0.5px solid #ddd;
box-sizing: border-box;
min-height: 100%;
position: relative;
}
.invoice-box table tr.top table td.title {
font-size: 40px;
line-height: 45px;
color: #333;
padding-left: 20px;
}
tr.invoice_details td {
padding-left: 15px;
padding-right: 0px;
}
table { page-break-inside:auto }
tr{ page-break-inside:avoid; page-break-after:auto }
<div id="holder">
<div class="invoice-box">
<div class="invoice_title">Purchase Order</div>
<table class="invoice-box-table">
<tr class="heading">
<td>Item</td>
<td>Packing</td>
<td>Code</td>
<td class="qty">Qty</td>
</tr>
<tr class="item">
<td>Website design</td>
<td>-</td>
<td>Q-FOIL-LACYS-25-37.5</td>
<td class="qty"> 1</td>
</tr>
</table>
</div>
<div class="thank_you_message">
<div class="thank_you">
<div style="font-size: 20px;">Thank you for your order, our staff will be attending to you shortly.</div>
</div>
</div>
</div>
This thank you message doesnt go at the end of bottom in printer when there's more than 2 pages