Q8
Which of the following selector selects all elements of E that have the attribute attr that end with the given value?
A.
E[attr^=value]
B.
E[attr$=value]
AnswerC.
E[attr*=value]
D.
none of the mentioned
Answer: Option B
Solution
Answer: Option B
Solution:
Example: p[title$="!"] {color: red;}