Skip to content

Instantly share code, notes, and snippets.

@ahmedghazi
Created March 23, 2018 15:04
Show Gist options
  • Save ahmedghazi/bf152110ad96b1e7d6ac0aa056fbc94d to your computer and use it in GitHub Desktop.
Save ahmedghazi/bf152110ad96b1e7d6ac0aa056fbc94d to your computer and use it in GitHub Desktop.
CSS3 data attributes
[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