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 things I thought of.
You will need to modify some CSS rules for Navbar component. So add a class center to nav.navbar and the following rules:
center
nav.navbar
.navbar.center .navbar-inner { text-align: center; } .navbar.center .navbar-inner .nav { display:inline-block; float: none; }
Working demo (Bootstrap 3.3.7)
2.1m questions
2.1m answers
60 comments
57.0k users