在我的CSS底部,请找到以下内容;
.AdminPanelLayout .Option:nth-child(1) {
background:#000000;
margin-left:20px;
}
不需要background:#000000;
,它可用于测试purpposes。至于margin-left:20px;
是我想要实现的目标。
答案 0 :(得分:1)
.AdminPanelLayout .Option:nth-of-type(2) {
background:#000000;
margin-left:20px;
}
答案 1 :(得分:1)
好吧,你似乎很想念first-child
的概念。它不会寻找符合选择器的第一个孩子。相反,它会查找同时也是其容器中第一个子节点的选择器。
选择您案例中的第一个.Option
:
<div class="AdminPanelLayout">
<div class="Title">
2). Choose Admin Panel Layout
</div>
<div class="Option">
您必须尝试其他方法,例如:
.AdminPanelLayout .Option:nth-child(2) {
.AdminPanelLayout .Title + .Option {
你必须玩一点