modal with max height
2022年5月1日小于 1 分钟
modal with max height
Question
Let's create a modal
- it has header(fixed height: 50px) and stretching body
- width of 300px and total max height 300px
- centered in viewport
- need mininum space of 30px to viewport top and bottom.
The HTML structure is something like
<div class="modals">
<div class="modal">
<div class="modal-header"></div>
<div class="modal-body"></div>
</div>
</div>