Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to fix row to bottom of page in Bootstrap

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.

like image 883
Mythu Avatar asked Oct 20 '17 13:10

Mythu


2 Answers

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>
like image 156
Amir Ben Khadda Avatar answered Sep 28 '22 09:09

Amir Ben Khadda


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%;
}
like image 41
Claire Avatar answered Sep 28 '22 10:09

Claire