将导航栏中的内容与引导程序中的位置中心对齐

时间:2014-01-31 10:39:00

标签: css twitter-bootstrap icons

我尝试了很多但是我,但无法修复导航栏中心的内容。 但是能够在左边或右边修复它。以下是我使用的代码。

<h4 class="navbar-text navbar-center">Mytitle </h4>

3 个答案:

答案 0 :(得分:2)

试试这个 - &gt;的 JSFIDDLE DEMO

首先,您必须删除引导程序的泛型类。

我们通过重置float:none选项来做到这一点!

然后我们使用text-align:center将内容居中。

CSS:

#example .navbar .nav,
#example .navbar .nav > li
{
    float:none; /*To remove the inbuilt float option*/
    display:inline-block;
}

#example .navbar-inner {
    text-align:center;/*To center this*/
}

.navbar .brand{
    float:none; /*To remove the inbuilt float option*/
}

答案 1 :(得分:0)

http://jsfiddle.net/yHprm/220/这样的事情,但......取决于你是否有其他东西...它将有助于更多的代码。

.parentDiv {text-align: center}

答案 2 :(得分:0)

请尝试

.navbar-text {
    width: 92%;  /* new edit */
    text-align: center;  /* new edit */
}