Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • LeikoRed 10

    @LeikoRed

    Posted

    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 or li.

    *{
    margin: 0;
    padding: 0;
    }
    

    It is good tho

    0