JSFiddle - React, Tailwind, and code Playground

by webxz

HTML

<div class="list-posts iterator">
    <div></div>
    <div></div>
    <div></div>
</div>

<div>какой-то текст</div>

<div class="list-posts iterator">
    <div></div>
    <div></div>
    <div></div>
</div>

CSS

.list-posts div {
    height: 20px;
}
.iterator>:nth-child(odd) {
    
    background: red;
}
.iterator>:nth-child(even) {
    background: green;
}