Created
March 23, 2018 15:04
-
-
Save ahmedghazi/bf152110ad96b1e7d6ac0aa056fbc94d to your computer and use it in GitHub Desktop.
CSS3 data attributes
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
[attribute^=value] { /* starts with selector */ | |
/* Styles */ | |
} | |
[attribute$=value] { /* ends with selector */ | |
/* Styles */ | |
} | |
[attribute*=value] { /* contains selector */ | |
/* Styles */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment