Attribute Selectors Test
All the links go to www.mindfly.com. If the browser can use the selectors mentioned on the list item, then the link is green. Otherwise it is red.
Has an attribute ([attribute])
Matches a value ([attribute="value"])
Matches a value in a hyphenated list ([attribute|="value"])
Matches a value in a space seperated list([attribute~="value"])
(CSS3) Matches when it starts with the value ([attribute^="value"])
(CSS3) Matches when it ends with the value a value ([attribute$="value"])
(CSS3) Matches when value appears anywhere ([attribute*="value"])