我试图使container-fluid
和第二row
延伸到剩余的高度,但我找不到方法来做到这一点。
我试过将align-items/align-self
设置为stretch
,但也不起作用。
下面是我的代码结构:
<div class="container-fluid"> <!-- I want this container to stretch to the height of the parent -->
<div class="row">
<div class="col">
<h5>Header</h5>
</div>
</div>
<div class="row"> <!-- I want this row height to filled the remaining height -->
<widgets [widgets]="widgets" class="hing"></widgets>
<div class="col portlet-container portlet-dropzone"> <!-- if row is not the right to stretch the remaining height, this column also fine -->
<template row-host></template>
</div>
</div>
</div>
我用的是Bootstrap 4 A6。有人能建议我如何使容器和行伸展剩余的高度吗?
1条答案
按热度按时间kiayqfof1#
Bootstrap 4.1.0有一个
flex-grow
的实用程序类,它是你需要的行来填充剩余的高度。您可以为此添加一个自定义的“填充”类。你还必须确保容器是全高的。Bootstrap 4.1中的类名是
flex-grow-1
https://codeply.com/p/gfitG8PkNE
相关:Bootstrap 4使嵌套行填充父级已使用flex-grow填充视口高度