600 * 600 div内に200 * 200の3つの矩形divを配置しようとしています。 25ピクセルの間隔で表示されます。私の最初のコードは正常に動作します。しかし、nth-child(1)とnth-child(2)を適用しようとすると動作しません。nth-child(number)CSSが適用されないためのセレクタ
https://jsfiddle.net/user1989/L20fn90L/
子セレクタが適用さ取得されていない
#two-parent :nth-child(0){
margin-top:25px;
width:200px;
height:200px;
background-color : black;
float:left;
}
#two-parent :nth-child(1){
margin-top:25px;
position:relative;
width:200px;
height:200px;
background-color : orange;
margin-left:25px;
float:left;
}
ように私は、スタイルの一部を変更した場合。
ありがとうございますIsahac – smraj