gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-03 23:55:12 24 4
gpt4 key购买 nike

试图让我的按钮在下面的文本上方居中。我认为这与我向左浮动有关,但我相信我仍需要将其向左浮动,因为之后的内容也是 float 的。

margin :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/

最佳答案

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;
}

关于html - CSS 按钮不会在我的导航中居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18937351/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com