Печать этикетки внизу последней страницы в Html - PullRequest
0 голосов
/ 02 марта 2020

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

Buyer Confirmation

.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>

1 Ответ

0 голосов
/ 03 марта 2020

Вы должны установить контейнер 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>
...