@NegligenceSubmitted over 2 years ago
LeikoRed
@LeikoRedAll comments
- @LeikoRedPosted 3 months ago
I see you are using:
not(ul, ol, li) {margin: 0; padding: 0;}
since it targets all elements except ul, ol, and li, setting their margin and padding to zero. It'd be prefered to use the universal selector. The :not selector is used for more specific cases where you need to exclude particular elements, but in this scenario isn't necessary because you don't use
ul
,ol
orli
.*{ margin: 0; padding: 0; }
It is good tho
0