How to Center Twitter Bootstrap Navbar Navigation Links?

Susan Sarandon
Release: 2024-11-01 10:53:02
Original
947 people have browsed it

How to Center Twitter Bootstrap Navbar Navigation Links?

Modify Twitter Bootstrap Navbar: Centering 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.

Problem: Centering 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.

Solution: Inline-Block Layout and Text Alignment

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>
Copy after login

Targeting Specific Navbar Instances

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>
Copy after login
<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>
Copy after login

Aligning Submenu Items

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>
Copy after login

Demo

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!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!