1

私は次のようなパターンを持っています。最初のchildDivクラスのCSSを変更せずに、2番目の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 ///
    }

また - - - - - - - - -

2つしかない場合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 に答える