How to apply CSS margin-bottom: 30px; to first 3 element and not last 3 element below HTML?
<div class="container">
<div class="card"></div>
<div class="card"></div>
<div class="card"></div>
<div class="card"></div>
<div class="card"></div>
<div class="card"></div>
</div>
2
Answers
You can use a pseudo element called
nth-child()
. This picks particular childs. In this case, you would useYou use n as a variable. At n = 1, nth-child will be 2, n = 2, nth-child will be 1 and n = 3 nth-child will be 0. It won’t go on to have negative a nth-child.
Let me know if it works!