Pattern:
[attr]
Definition:
The [attr] selector matches any element based on the presence of attr attribute, regardless of the attribute's value.
Examples:
Style all <img> elements with an alt attribute
1 | img[alt] { border : 1px solid #FFFF00 ; } |
Please login to continue.