Forums

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

Home Forums CSS Problem with specificity Re: Problem with specificity

#50397
Cotton
Member

It looks to me as if you’ve got your class in the wrong place.

You have:

Code:
#navigation .first li {your styles}

And you should have

Code:
#navigation li.first {your styles}