I’m looking at a css template that includes .myClass a.extra{...} and .myClass a.extra:hover{...} What does the “extra” mean?
I’m looking at a css template that includes .myClass a.extra{…} and .myClass a.extra:hover{…} What
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.
extrais the name of a class.Since you have:
that rule is applying to all the
aelements with theextraclass which are descendants of an element with themyClassclass.