CSS按钮不会在我的导航中居中

时间:2013-09-21 20:35:28

标签: html css button navigation center

尝试让我的按钮位于下方文字的中间位置。我认为这与我的漂浮左撇子有关,但我相信我还需要将它漂浮在左边,因为之后的内容也是浮动的。

保证金:0自动;不工作。

请告知:

.button {
    background-color:  rgb(214,52,49);
    padding: 4px 24px;
    border-radius: 40px 40px 40px 40px;
    color: white;
    text-decoration: none;
    vertical-align: middle;
    text-align: center;
    font-size: 2rem;
    display: block;
    width: 150px; /* 150 / 980 */
}

nav { 
    width: 100%;
    float: left;
    margin: 0 0 1em 0;
    padding: 0;
    background-color: green;
    border-bottom: 1px solid #ccc;
    text-align: center;
    vertical-align: text-top;
}

nav a.button {
    float: left;
    margin: 0 auto;
}


nav a.button:not(:first-child) {
    margin-left: 150px;
}

http://jsfiddle.net/117sparten/kNZEs/3/

3 个答案:

答案 0 :(得分:1)

尝试更改nav a.button,如下所示:

nav a.button { display: inline-block; margin: 0 auto; }

nav a.button { display: inline; margin: 0 auto; }

答案 1 :(得分:1)

在按钮类

中使用此inline-block属性
.button
{
  display:inline-block;
}

并从nav a.button

中删除float属性

答案 2 :(得分:1)

Here you go

<header>
   <nav>
      <div class="btngroup">
         <a href="#" class="button">contact</a>
         <a href="#" class="button">blog</a>
      </div>
   </nav>
</header>

.button {
    background-color:  rgb(214,52,49);
    padding: 4px 24px;
    border-radius: 40px 40px 40px 40px;
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 2rem;
    display: inline-block;
    width: 150px; /* 150 / 980 */
}

.button:not(:first-of-type) {
    margin-left: 10px;
}

nav { 
    width: 100%;
    float: left;
    margin: 0 0 1em 0;
    padding: 0;
    background-color: green;
    border-bottom: 1px solid #ccc;
    text-align: center;
    vertical-align: text-top;
}

nav div.btngroup {
    width: 410px;
    margin: auto;
    height: 
}

nav a.button {
    float: left;
    margin: 0 auto;
}