【发布时间】:2020-07-12 06:47:59
【问题描述】:
尝试使用 Bootstrap-4 构建一个新网站
我正在尝试将徽标对齐到左侧,将链接按钮对齐在中间,将链接按钮对齐到页脚 div 的右侧。目前,我已经让它工作了,只是徽标是垂直对齐的,因此它的顶部居中而不是图像的中心,所以它挂得很低!
我尝试了垂直对齐并尝试了对齐内容设置。
.footer {
background-color: #68B3E2;
text-align: center;
padding: 30px;
justify-content: space-around;
}
.logo {
display:inline-block;
float:left;
}
.center_btn {
display:inline-block;
float:none;
}
.right_btn {
display:inline-block;
float:right;
}
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet"/>
<div class="footer">
<img class=logo src="images/logo.png" width="120" height="120" alt="">
<a class="center_btn btn-primary btn-lg" href="#" role="button">Ask a question</a>
<a class="right_btn btn-primary btn-lg" href="#" role="button">Register</a>
</div>
【问题讨论】:
标签: html css bootstrap-4