There are several options depending on your markup:
Second child with class unit:
#wrapper-related-albums .unit:nth-of-type(2) { } #wrapper-related-albums .unit:nth-child(2) { }
Adjacent brother (with class unit) of the first element:
#wrapper-related-albums :first-child + .unit { }
I do not believe that you can simply select the "first .unit ", but you can add margin to all but the last, if it always falls last:
#wrapper-related-albums .unit { margin-bottom: 20px; } #wrapper-related-albums .unit:last-child { margin-bottom: 0px; }
source share