How does CSS :not selector work?
The :not pseudo selector is useful for styling a group of elements, while leaving the last (or specified) element unstyled.
li:not(:last-child) specifies that the styles should apply to all li elements except the :last-child.
Code Sample:
HTML
<ul cl...
saintvandora.hashnode.dev1 min read