Bootstrap modal body max height 100%

后端 未结 10 1841
梦如初夏
梦如初夏 2020-12-31 06:37

I have a custom sized (80% height width) bootstrap modal body and it scrolls (body content will overflow on some sized screens)

There are 2 problems:

  1. I
10条回答
  •  南笙
    南笙 (楼主)
    2020-12-31 07:37

    Make the html and body elements fill the window:

    html, body { height: 100%; }
    

    Now you can use max-height: 100% on the element inside body, and it will be 100% of the window as the body element now is the size of the window.

提交回复
热议问题