我正在使用Bootstrap 4构建学校网站模板。
我用一张卡片来制作员工页面。但我不能把卡片放在中心位置。
这是我的代码:
<div class="card text-center" style="width: 21.5em;">
<img class="card-img-top" src="images/placeholder.jpg" alt="Card image cap">
<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>
我该如何解决这个问题?
答案 0 :(得分:1)
您可以使用:
style="width: 21.5em;margin:0 auto;"
您的卡片将居中。