Last active
December 6, 2018 14:27
-
-
Save bepatrickdavid/8da6af9c7ca3f20923a76ef99b5a2897 to your computer and use it in GitHub Desktop.
[CSS] class style
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
[class$="test"] | |
elements that have a class that ends with “test” | |
[class*=“test"] | |
elements that have a class that contain “test” | |
[class~=“test”] | |
elements that have a class that contain at least class“test” | |
[class|=“test”] | |
elements that have a class that start with “test” (top or top-example, top-content) | |
[class^=“test”] | |
elements that have a class that start with “test” |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment