with a sa...">

Fixed mold forms

I am using the Twitter boot fluid layout. On the page I have a large form, at the bottom - <div class="form-actions">with a save button. I would like this div to be visible all the time, so the user does not always have to scroll down the page. I tried using this piece of CSS:

.fixed {position: fixed !important;}

This works when the table fits in the viewport, but mysteriously disappears when the table is too large. Does anyone have a solution for this?

+5
source share
1 answer

Try setting some values ​​for topor bottomdepending on where you want to bind it.

.fixed {
    position: fixed;
    bottom:0;
    left:0;
 }
+6
source

All Articles