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"
pre[title=css] { color: aqua; }
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"
pre[title=css] { color: aqua; }
Please login to continue.