【发布时间】:2019-01-29 21:28:02
【问题描述】:
justify-content-center 可以正常工作,但 align-items-center 不能
HTML 代码:
<div class="container h-100">
<!--Another content-->
<div class="footer bg-dark ">
<div class="row justify-content-center align-items-center">
<span >© 2014 Keepsake. All rights reserved. Theme by
elemis</span>
</div>
</div>
</div>
CSS:
div.footer{
width: 100%;
height: 150px;
span{
color:white;
}
}
【问题讨论】:
-
它确实有效......但
row没有定义的高度,因此没有垂直中心。给行一个定义的高度,你会看到它工作:codeply.com/go/7nHlTJOC1W
标签: html twitter-bootstrap web bootstrap-4