【发布时间】:2018-07-11 08:55:53
【问题描述】:
我正在为我的网站使用引导程序,我尝试在标题的左侧制作文本,在右侧制作图像。我尝试使用行容器并使用 justify-content-end 但它与标题的高度不同。我想让它们处于相同的高度。
这是我试过的:
<div class="card" style="margin-bottom: 25px;">
<div class="card-header">
<h4 class="card-title Anton"><?php echo($thread['title']); ?>
<span class="row justify-content-end">
<img height="32" width="32" src="assets/img/edit.png" href="/test" style="padding: none; margin: none;">
</span>
</h4>
<hr />
...
【问题讨论】:
-
请问什么是justify-content-end?如果你使用 FlexBox,它不应该是 flex-end 吗?
标签: html css bootstrap-4