Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

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]
c) E[attr*=value]
d) none of the mentioned

Answer: b
Explanation: Example: p[title$=”!”] {color: red;}

Join The Discussion