Bootstrap 4 - Sticky footer - Dynamic footer height

前端 未结 3 628
清酒与你
清酒与你 2020-11-27 08:14

I need to put a sticky footer on my pages , however i don\'t have a definite height set for my footer . On smaller screens - the rows resize and footer becomes longer .

3条回答
  •  情歌与酒
    2020-11-27 08:24

    Now that Bootstrap 4 is flexbox, a sticky footer can be done using...

    
        
        
    body, wrapper { min-height:100vh; } .flex-fill { flex:1 1 auto; }

    Demo: Bootstrap 4.0 Sticky Footer

    Note: The flex-fill utility class is included in the Bootstrap 4.1 and later release. So after that release the extra CSS for flex-fill won't be needed.

    As of Bootstrap 4.1, there is a min-vh-100 utility class which means you don't need the extra CSS.

    Demo: Bootstrap 4.1+ Sticky Footer

提交回复
热议问题