AllThingsSmitty / css-protips

⚡️ A collection of tips to help take your CSS skills pro 🦾
Creative Commons Zero v1.0 Universal
28.16k stars 2.17k forks source link

display: none; should be written as display: block; when select all items except the first 3 and display them. #98

Closed lulin1 closed 6 years ago

lulin1 commented 6 years ago

/ select all items except the first 3 and display them / li:not(:nth-child(-n+3)) { display: none; //should be written as display: block; }

AllThingsSmitty commented 6 years ago

Good catch. Thanks!