I recently acquired a website with a div layout that is unfamiliar to me:
<html>
<body>
<div class="wrap">...</div>
<nav>...</nav>
<div class="wrap">...<!-- main stuff -->...</div>
<footer>
<div class="wrap">...</div>
</footer>
</body>
</html>
One of the pages on this site has limited content and requires a sticky footer. Typically, I would have applied a solution like and utilized CSS properties such as setting height to 100%.
I prefer not to alter the structure of the website. Is there an alternative method to place the footer at the bottom of the screen while maintaining the 'class of wrappers' structure?