Печать этикетки внизу последней страницы в HTML

Я хочу напечатать выделенное содержимое (см. снимок экрана) внизу последней страницы моего HTML-отчета. Когда я устанавливаю position:fixed;, он появляется на каждой странице.

Подтверждение покупателя

.BuyerSign {
        height: 40px;
        vertical-align: bottom;
        width: 28%;
        padding-left: 25px;
        text-align: right;
        bottom:0px !important;
        /*bottom: 0px !important;*/
        /*bottom:-200px !important;
        position:relative !important;*/
    }
  <div class="BuyerSign" style="">
                            <label style="border-top:1px solid #000;text-align:center;">
                                Buyer Confirmation
                            </label>
                        </div>


person Bilal    schedule 02.03.2020    source источник


Ответы (1)


вы должны установить div контейнера в относительный:

.BuyerSign {
        position:relative;
        bottom:0px;
        height: 40px;
        vertical-align: bottom;
        width: 28%;
        padding-left: 25px;
        text-align: right;
    }
  <div class="BuyerSign" style="">
                            <label style="border-top:1px solid #000;text-align:center;">
                                Buyer Confirmation
                            </label>
                        </div>

person Riy Adh    schedule 02.03.2020