My app is contained within a <div class="container">
. Inside this container, I have an editor and some buttons that I always want to be displayed at the bottom of the screen. Here's how it looks:
<div class="container>
// content here....
<div id="bottom" class="submit-form">
<div id="editor"></div>
<div class="btn btn-grp" ></div>
</div>
I've attempted to adjust the min-height and height properties of html, body, and container to 100%, but adding !important to these rules doesn't extend my div container further down. Using the "fixed-bottom" Bootstrap class causes the #bottom div to exceed the boundaries of the container, resulting in an unsightly layout.
Any suggestions for fixing this issue?