Discussion Forum : Css Selectors And Css Files
Question - Which of the following selector selects all elements of E that have the attribute attr that end with the given value?
Options:
A .  E[attr^=value]
B .  E[attr$=value]
C .  E[attr*=value]
D .  none of the mentioned
Answer: Option B
Example: p[title$="!"] {color: red;}

Was this answer helpful ?
Next Question
Submit Your Solution hear:

Your email address will not be published. Required fields are marked *