Home › Forums › CSS › Problem with specificity › Re: Problem with specificity
October 8, 2008 at 3:47 pm
#50397
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}