1

我有以下一种模式。如何在不更改第一个 childDiv 类 css 的情况下为第二个 childDiv 类应用 css 更改

<div class="parentDiv">
<div class="childDiv">   with same class
</div>
<div class="childDiv">   with same class 
</div>
</div>
4

2 回答 2

2

嘿,现在已经习惯了

.childDiv:nth-of-type(2){
// css style ///
}

或者 - - - - - - -

   .parentDiv > .childDiv:last-child{
    // css style ///
    }

或者 - - - - - - - - -

如果你只有两个childiv

   .parentDiv > .childDiv + .childDiv{
    // css style ///
    }
于 2012-07-03T08:50:55.387 回答
1

尝试这个 -

.childDiv:nth-child(2) {
  //css properties
}

工作小提琴在这里

于 2012-07-03T08:52:04.040 回答