试图让我的按钮在下面的文本上方居中。我认为这与我的浮动左边有关,但我相信我仍然需要向左浮动,因为之后的内容也是浮动的。
边距: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/
你去吧。
<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;
}
尝试像这样更改nav a.button
:
nav a.button {
display: inline-block;
margin: 0 auto;
}
或
nav a.button {
display: inline;
margin: 0 auto;
}
在
按钮类中使用此内联块属性
.button
{
display:inline-block;
}
并从导航 a.按钮中删除浮点属性