Answers for "get attr on css :before content: """

CSS
1

before content from attribute

/* html */
<p data-foo="Lorem Ipsum"></p>

/* css */
[data-foo]::before {
  content: attr(data-foo);
}
Posted by: Guest on June-18-2021

Code answers related to "get attr on css :before content: """

Browse Popular Code Answers by Language