Answers for "data attribute value in css"

CSS
2

css set property with data attribute

div::after {
  content: attr(data-whatever);
}
Posted by: Guest on February-25-2020
0

css data attribute selector

[data-value] {
  /* Attribute exists */
}

[data-value="foo"] {
  /* Attribute has this exact value */
}

[data-value*="foo"] {
  /* Attribute value contains this value somewhere in it */
}

[data-value~="foo"] {
  /* Attribute has this value in a space-separated list somewhere */
}

[data-value^="foo"] {
  /* Attribute value starts with this */
}

[data-value|="foo"] {
  /* Attribute value starts with this in a dash-separated list */
}

[data-value$="foo"] {
  /* Attribute value ends with this */
}
Posted by: Guest on October-22-2020

Code answers related to "data attribute value in css"

Browse Popular Code Answers by Language