JSFiddle - React, Tailwind, and code Playground

by Corentin Ballot

HTML

<div id="test" data-height="20px" data-color="red">

</div>

CSS

#test::after {
  content: "1";
  height: attr(data-height);
  width: attr(data-height);
  background-color: attr(data-color);
}