Bootstrap 4:如何使卡片居中[重复]
Posted
技术标签:
【中文标题】Bootstrap 4:如何使卡片居中[重复]【英文标题】:Bootstrap 4: how to center a card [duplicate] 【发布时间】:2018-08-30 10:38:32 【问题描述】:我正在使用 Bootstrap 4 构建学校网站模板。
我用一张卡片来制作员工页面。但我无法将卡片居中。
这是我的代码:
<div class="card text-center" style="width: 21.5em;">
<img class="card-img-top" src="images/placeholder.jpg" >
<div class="card-body">
<h5 class="card-title">Title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
我该如何解决这个问题?
【问题讨论】:
中心,在哪里?哪一条路?对应的代码在哪里? 【参考方案1】:你可以使用:
style="width: 21.5em;margin:0 auto;"
您的卡片将居中。
【讨论】:
以上是关于Bootstrap 4:如何使卡片居中[重复]的主要内容,如果未能解决你的问题,请参考以下文章