html - wkhtmltopdf - Aligning logo to bottom without using a footer -
i want add logo @ bottom of first page. ideally i'd position:absolute bottom:0 - positioned bottom in wkhtmltopdf doesn't seem work.
this problem because logo dynamic , have different heights depending on aspect-ratio of uploaded image.
i see can add footer, adds pages, , want on 1 page.
what options? have position-absolute top? if so, if page size changes? needs work in a4 , letter.
i having same issue , solved adding width element. so, element want stick bottom have css:
.footer { position: absolute; bottom: 0; width: 100%; }
Comments
Post a Comment