This website collects cookies to deliver better user experience
:nth-child(n)
n
:nth-of-type(n)
<div class="container"> <div class="parent"> <div class="child"></div> <div class="child"></div> <div class="child"></div> <div class="child"></div> <div class="child"></div> <span class="child"></span> <span class="child"></span> <span class="child"></span> <span class="child"></span> <span class="child"></span> </div> </div>
.container{ display: flex; align-items: center; justify-content: center; height: 20%; } .parent { display: flex; align-items: center; justify-content: space-around; width: 100%; } .child, span { height: 50px; width: 50px; background-color: lightgray; } .child:nth-of-type(1){ background-color: darkblue; }
div
span
28
0