Can someone explain why last-child doesn’t work when I use a classname selector with it? Is that not allowed?
Can someone explain why last-child doesn’t work when I use a classname selector with
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s because the
:last-childof your list is not a.group1.The selector
li.group1:last-childdoesn’t mean “the lastli.group1child”; it means “thelielement that is the last child and has the ‘group1’ class”.