Home > Article > Web Front-end > How to Center Twitter Bootstrap Navbar Navigation Links?
The Twitter Bootstrap navbar offers a practical solution for website navigation. However, sometimes you may want to customize its appearance, such as centering the navigation links.
Modifying the navbar's alignment requires some CSS code. However, some methods may not yield the desired result. Let's explore the correct approach.
To center nav menu items, set their display property to inline-block instead of float: left. This will allow the items to be aligned horizontally without breaking the layout. Additionally, set the text-align property of the navbar's inner container to center.
<code class="css">.navbar .nav, .navbar .nav > li { float: none; display: inline-block; *display: inline; /* ie7 fix */ *zoom: 1; /* hasLayout ie7 trigger */ vertical-align: top; } .navbar-inner { text-align: center; }</code>
If you have multiple navbars on your web page, it's recommended to create a dedicated CSS class to target the specific navbar you want to center. This will prevent unwanted effects on other navbars.
<code class="html"><div class="navbar navbar-fixed-top center"> <div class="navbar-inner"> .... </div> </div></code>
<code class="css">.center.navbar .nav, .center.navbar .nav > li { float: none; display: inline-block; *display: inline; /* ie7 fix */ *zoom: 1; /* hasLayout ie7 trigger */ vertical-align: top; } .center .navbar-inner { text-align: center; }</code>
It's worth noting that the above CSS will also affect submenu items, causing them to be centered as well. If you prefer to have submenu items aligned to the left, add the following style:
<code class="css">.center .dropdown-menu { text-align: left; }</code>
See a live demo at: http://jsfiddle.net/C7LWm/show/
The above is the detailed content of How to Center Twitter Bootstrap Navbar Navigation Links?. For more information, please follow other related articles on the PHP Chinese website!