/ Published in: CSS
URL: http://reference.sitepoint.com/css/attributeselector
CSS 2 and 3 Selectors
Expand |
Embed | Plain Text
CSS2 Attribute Selectors --- a[href]{ declarations } a[href="index.html"] { declarations } /* for matching hyphen separated values starting with "en" eg: "en-US"*/ tag[hreflang|="en"] { declarations } /* for matching space separated values containing "myClass" eg: class=" bold myClass red" */ tag[class~="myClass"] { declarations } CSS3 Attribute Selectors --- /* for matching values starting with... */ a[href^="http:"] { declarations } /* for matching values ending with... */ img[src$=".png"] { declarations } /* for matching values containing... */ a[href*="yahoo"] { declarations }
You need to login to post a comment.
