当前位置:  开发笔记 > 前端 > 正文

Bootstrap 4 - 容器截面高度为100%

如何解决《Bootstrap4-容器截面高度为100%》经验,为你挑选了1个好方法。

所以这里我有Bootstrap 4(以及flexbox)的问题.这是代码:HTML:

We design things

和CSS:

#intro {
    min-height: 65vh;
    background-image: url("../img/intro.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.container-fluid {
    height: 100%;
    min-height: 100%;
}

我希望.container-fluid始终是它的父高度的100%,所以如果section有100vh,容器也应该,如果它有50vh它也应该有50vh.我怎么做?如果它的高度是h1的高度,我无法使用flexbox居中.



1> Michael_B..:

通常,当您希望元素为其父元素的高度时,请将父元素设置为Flex容器.

#intro {
    min-height: 65vh;
    background-image: url("../img/intro.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex; /* NEW */
}

Flex容器的初始设置是align-items: stretch.这意味着Flex容器的子级将自动拉伸容器的完整交叉大小.在行方向上,这将是高度.因此,申请display: flexdisplay: inline-flexsection#intro.


添加显示:flex到.container-fluid修复它,但我确定Boostrap 4,它应该是由flexbox构建的默认情况下 - 事实证明只有行有flex属性这很奇怪.谢谢您帮忙.
推荐阅读
和谐啄木鸟
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有