bottom of page not alignment correctly if data is big?

46 Views Asked by At

I working on template page html and CSS .I face issue page template not align bottom

correctly when data is big and more .

so How to alignment page bottom according to expected image below

issue exist on part below

 <table>
        <tr>
            <td style="width:40mm">
                <label class="requestInfo-lable-1">CEO:</label>
            </td>
            <td style="width: 40mm; border-bottom: solid 1px;">
            </td>
            <td>
            </td>
        </tr>
        <tr>
            <td style="width:40mm">
            </td>
            <td style="width: 40mm;text-align:center;">
                <label class="requestInfo-lable-1">Signature and Date</label>
            </td>
            <td>
            </td>
        </tr>
        </table>
</div>
<br />
<div style="border-top: solid 1px; margin-top: 1px; padding-top: 1px; padding-bottom: 5px; ">
    <table>
       <tr>
            <td style="width:40mm">
                <label class="requestInfo-lable-1" style="margin-bottom:3px">Received by:</label>
            </td>
            <td style="width: 40mm; border-bottom: solid 1px;">
            </td>
            <td>
            </td>
        </tr>
        <tr>
            <td style="width:40mm">
            </td>
            <td style="width: 40mm;text-align:center;">
                <label class="requestInfo-lable-1">Signature and Date</label>
            </td>
            <td>
            </td>
        </tr>
    </table>

</div>

my html sample full page html CSS

fiddle exist on

https://jsfiddle.net/mpdv4ur0/

my image details issue

expected bottom design

Updated original Post

link after convert asp.net controls to html

https://jsfiddle.net/dj9h7ro0/75/
0

There are 0 best solutions below