To make the first 5 list items bold:
li:nth-of-type(-n + 5) { font-weight: bold; }
Start with the amount of items to impact, then increment backward with -n.
-n
[[20220627094238-selecting-range-n-items-css]]
[[css]]