Bootstrap4のcol内で左右中央寄せにする

Bootstrap

Bootstrap4のcolの中で左右中央寄せするには「d-flex justify-content-center」を使います。

d-flexもいっしょに指定するのをお忘れなく

justify-content-centerだけじゃ動作しません)

<div class="row">
  <div class="col-6 d-flex justify-content-center">
    僕を左右中央寄せにしてくだしゃーーい!(おねがい)
  </div>
</div>

ちなみにBootstrap5でも動きました