I know I can push navbar items to the left and right, but how would I center them?
text-align:center;
doesn\'t work nor any of the other th
text-center
or mx-auto
or container-fluid
or use flexbox technique, flex justify-center
You could use this hack text-center
(this does not only apply for text)
Or use the exact boostrap class mx-auto
example
class="text-center"
or class="mx-auto"
in context
or
TRY NOT TO USE inline styles (bad practice)
References here:
text-center
=>
https://getbootstrap.com/docs/4.0/utilities/text/
mx-auto
=> https://getbootstrap.com/docs/4.0/utilities/spacing/#horizontal-centering
- 热议问题