<body>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</body>
body { width:600px; margin: 50px auto }
ul { display: flex; width: 100px; flex-wrap: wrap; }
li {color: orange; font-size: 72px; width: 50px }
li:nth-child(2n) { color: blue }
li:nth-child(4n + 3) { color: blue }
li:nth-child(4n + 4) { color: orange }
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.