Home » CSS » CSS Attribute Selectors » Question
  1. Which of the following selectors selects the specified elements of type E with a particular class value?
    1. *
    2. E, F, G
    3. E.class
    4. E ~ F
    5. None of these
Correct Option: C

h1.note {text-decoration: underline;}
/* underlines all h1 tags with
class='note' */



Your comments will be displayed only after manual approval.