Boostrap v4.0.0-alpha.6 model - how to center model title

Artoo Smith picture Artoo Smith · Feb 8, 2017 · Viewed 24.3k times · Source

How do you center a model's title? I tired to add the class "text-center" to the h1 tag but it keeps showing the tile left aligned.

Thanks

Answer

webprojohn picture webprojohn · Mar 27, 2018

You can use the w-100 class on the h3.modal-title element along with text-center.

<div class="modal-header text-center">
  <h3 class="modal-title w-100">Quiz Results</h3>
</div>