Reputation: 59
I just created a large table within a div structured page. The table is larger than the initial page, which causes the scroll bar to appear which is absolutely fine. However when you scroll to the bottom of the page, the last row is flush with the bottom of the page. This doesn't seem visually appealing to me. Previously I have solved this by adding one last row to the table, and adjusting the height and transparency. Is this the best way to do this? Or is there a more proper way to accomplish this using wrapping divs?
Thanks!
Upvotes: 0
Views: 68
Reputation: 3618
Hard to answer without the code but a very simple solution would be adding a padding-bottom to the body.
<body style="padding-bottom: 50px;">
Upvotes: 2