这是 HTML
.thumbnails {
display: flex;
flex-wrap: wrap;
}
.thumb {
display: flex;
width: 50%;
background: #E4E7F6;
}
.thumb:nth-child(odd) {
background: #fff;
}
<div class="thumbnails">
<div class="thumb">
<o>Текст</o>
</div>
<div class="thumb">
<o>Текст</o>
</div>
<div class="thumb">
<o>Текст</o>
</div>
<div class="thumb">
<o>Текст</o>
</div>
<div class="thumb">
<o>Текст</o>
</div>
<div class="thumb">
<o>Текст</o>
</div>
</div>
您需要按照布局分配颜色。如何做到这一点?