Вы можете добавить классы к своим пролетам:
.test {
display: flex;
justify-content: center;
align-items: center;
width: 80vw;
margin: 0 auto;
}
.test span {
height: 20px;
flex: 1;
margin: 0 1rem;
color: white;
text-align: center;
}
.test span.purple {
background: purple;
}
.test span.red {
background: red;
}
<div class="test">
<span class="purple">purple</span>
<span class="red">red</span>
<span class="purple">purple</span>
<span class="red">red</span>
</div>
Или вы можете выбрать для них: nth-of-type
.test span:nth-of-type(1) {
// this gets you the first one
}
.test span:nth-of-type(2) {
// this gets you the second one
}
et c.