Pattern:
[attr=val]
Definition:
The [attr=val] selector matches any element whose attr attrubute's value is exactly val.
Examples:
Style all <pre> elements whose title attribute is exactly the value "css"
1 | pre [title=css] { color : aqua ; } |
Please login to continue.