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
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;}