I have worked with bootstrap i want to give last row of the page is given to the bottom of the page and that row is fixed and also in responsive size.
This row class need to have those properties :
.fixed-row-bottom { position: fixed; bottom: 0;}
HTML code :
<div class="row fixed-row-bottom">My fixed row</div>
If you post your code it is easier to answer. You will want to apply a fixed position to your element, like so:
.element {
position:fixed;
bottom:0;
width:100%;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With