Search code examples
csscss-selectorspseudo-class

Issue on CSS 3 Selecting All But Not the Last


I am trying to add style to all classes inside a class but not the last one by using

.box > .row:not(last) {   margin-bottom: 5px;}

but it is not working! can you please help me to fix this .Thanks


Solution

  • Inside the :not() you should use valid CSS selectors. In this case you need the :last-child pseudo-selector.

    .box > .row:not(:last-child) { margin-bottom: 5px;}
    

    jsFiddle