我是初学者,请问设了text-center,为什么不居中?还有按钮该怎么设?
先把button转化为块级元素在设置margin:0 auto
你可以将文字<h3>和<button>都包含在一个<div>中
<div class="text-center">
<h3></h3>
<button></button>
</div>
这样就可以确保文字和按钮都在居中位置