19
Views
2
Comments
PDF footer with CSS
Question

I just design a PDF Block with some containers as below, I want that my footer always stay at the bottom of page, even when body container change height or not ?

2020-07-21 19-28-50
Rajat Agrawal
Champion

Hi Kiet Truong,

You can use this css:

.footer {

   position: fixed;

   left: 0;

   bottom: 0;

   width: 100%;

}

Check this link also

https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_fixed_footer


Regrads,

Rajat

2025-07-28 06-45-20
Rupesh Patil

Hello @Kiet Truong 

I have attached below oml file please check 

I hope this helps

Thanks

PDFfooter.oml
Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.