浏览了Bootstrap 4 Flex文档之后,我似乎无法使“ align-item-center”属性正常工作。我几乎测试了每个在线可用的示例,但实际上似乎无法更改任何内容的垂直对齐方式,这让我发疯了。我加入了一个简单的HTML示例,试图使之工作。
.d-flex {
display: -ms-flexbox !important;
display: flex !important;
}
.justify-content-center {
-ms-flex-pack: center !important;
justify-content: center !important;
}
.align-items-center {
-ms-flex-align: center !important;
align-items: center !important;
}
<div class="d-flex justify-content-center align-items-center">
<p> This should be centered right ?</p>
</div>
我正在使用Bootstrap 4.4.1,并且为了确定起见,还安装了popper.js@latest和jquery @ latest。为了进一步提高精度,我现在仅使用一条简单的文本行,但将来我将添加其大小直到运行时才知道的元素。
答案 0 :(得分:-2)
将height
设置为屏幕尺寸的父级,或者将其设置为视口高度的100%
.d-flex.justify-content-center.align-items-center {
height: 100vh;
}