Home » CSS » CSS Attribute Selectors » Question
  1. Which of the following selector selects all elements of E that have the attribute attr that end with the given value?
    1. E[attr*=value]
    2. E[attr^=value]
    3. E[attr$=value]
    4. All of above
    5. None of these
Correct Option: C

p[title$="!"] {color: red;}



Your comments will be displayed only after manual approval.