Skip to content

Instantly share code, notes, and snippets.

@bepatrickdavid
Last active December 6, 2018 14:27
Show Gist options
  • Save bepatrickdavid/8da6af9c7ca3f20923a76ef99b5a2897 to your computer and use it in GitHub Desktop.
Save bepatrickdavid/8da6af9c7ca3f20923a76ef99b5a2897 to your computer and use it in GitHub Desktop.
[CSS] class style
[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