bonjour, voilà le html en question :
Impossible de styler avec ces lignes css :
Quelqu'un a une solution svp ?
<body>
<div>
<section>
<div>section 1 div 1</div>
<div>section 1 div 2</div>
</section>
<section>
<div>section 2 div 1</div>
<div>section 2 div 2</div>
</section>
</div>
</body>
Impossible de styler avec ces lignes css :
body > div > section:nth-child(1) div:nth-child(1) {background:#f00}
body > div > section:nth-child(1) div:nth-child(2) {background:#f0f}
body > div > section:nth-child(2) div:nth-child(1) {background:#0ff}
body > div > section:nth-child(2) div:nth-child(2) {background:#ff0}
Quelqu'un a une solution svp ?