如何将引导行对齐到容器的底部?
像这样:
HTML
<main class="bd-masthead container-fluid" id="" role="main" style="padding-top:5rem;">
<div class="row">
<div class="col">
<h1 class="text-light">
LukeBank
</h1>
</div>
</div>
<div class="row" style="padding-top:10px">
<div class="col">
<button type="button" class="btn btn-outline-light">Button</button>
</div>
</div>
</main>
CSS
html, body {
height: 100%;
width: 100%;
}
main {
height: 100%;
background-image: url(/img/frontpage.bg.jpg);
background-position: center center;
background-size: cover;
}
.otherpart {
height: 100%;
background-color: white;
background-position: center bottom;
background-size: cover;
}
我尝试使用.align-bottom
,但它没有用。
答案 0 :(得分:5)
对于bootstrap 4,您可以使用简写类并设置mt-auto
,这样可以将元素与容器底部对齐。
答案 1 :(得分:2)
您可以使用
执行此操作
position:absolute;
bottom:0;
&#13;
附近添加
对准自中心
答案 2 :(得分:1)
尝试使用 col 类
将 align-self-end 类添加到div
<div class="col align-self-center">
答案 3 :(得分:1)
要与底部对齐,可以尝试使用flexbox:
display: flex;
flex-direction: column;
justify-content: space-between;
或者如果您只有一个元素
display: flex;
flex-direction: column;
justify-content: flex-end;
答案 4 :(得分:0)