Bootstrap 100% height with navbar

后端 未结 3 1872
不思量自难忘°
不思量自难忘° 2020-12-09 02:06

This is basically what I want to achieve:

\"Example\"

I want the total page to be 100% height, but when

3条回答
  •  执念已碎
    2020-12-09 02:46

    Probably because it is adding the default margin from the navbar. Try this:

    .navbar {
        height: 40px;
        position: relative;
        margin: 0;
        padding: 0;
    }
    

    Also, try changing the min to max height:

    max-height: 100% !important;
    

提交回复
热议问题