Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Target Last Item in a Column Re: Target Last Item in a Column

#58354
Johnnyb
Member

If you’re using jquery you could use something like: $(‘#column-1 .section:last’).css(‘background’, ‘orange’);

That would look inside of column-1 and find the last element with a class name of ‘section’ and change it’s background to orange! Which just happens to be the best color!