gpt4 book ai didi

html - :nth-child and :nth-of-type not working

转载 作者:太空宇宙 更新时间:2023-11-03 18:04:35 28 4
gpt4 key购买 nike

我有 3 个按钮,对于第二个按钮,我试图为其添加额外的边距,但出于某种原因,nth-child 和 nth-of-type 根本没有改变外观。我想我只是不明白它们是如何工作的,所以如果有人可以传播一点爱,那就太好了!

CSS 代码:

.ctabutton .viewbutton {
height: 30px;
width: 150px;
border-radius: 30px;
background-color: white;
margin: auto;
text-align: center;
line-height: 30px;
margin-top: 50px;
}

.viewbutton:nth-of-type(2) {
margin-top: 25px;

}

html代码:

<div class="viewbutton"><a href="http://google.com">View</a></div>

最佳答案

它应该工作正常...也许您的 HTML 有问题。

试试这个:

HTML:

<div class="ctabutton">
<div class="viewbutton"><a href="http://google.com">View</a>
</div>
<div class="viewbutton"><a href="http://google.com">View</a>
</div>
<div class="viewbutton"><a href="http://google.com">View</a>
</div>
</div>

CSS:

.ctabutton .viewbutton {
height: 30px;
width: 150px;
border-radius: 30px;
background-color: white;
margin: auto;
text-align: center;
line-height: 30px;
margin-top: 50px;
}
.viewbutton:nth-of-type(2) {
margin-top: 25px;
}

JSFiddle Demo

它仅在第二个 div 上更改 margin-top

关于html - :nth-child and :nth-of-type not working,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24922382/

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