This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* CSS2 */ | |
| /* CSS2 attribute selectors */ | |
| a[rel] { color: yellow; } /* simple attribute selector */ | |
| a[rel='nofollow'] { color: yellow; } /* exact attribute value selector */ | |
| a[rel~='nofollow'] { color: yellow; } /* partial attribute value selector */ | |
| a[lang|='ru'] { color: red; } /* Language Attribute Selector */ | |
| /* CSS3 */ |
NewerOlder