JSFiddle - React, Tailwind, and code Playground

by Konstantin Rouda

HTML

<details>
  <summary>Open me</summary>
  <p>Here is some text to see through!!!!</p>
</details>

CSS

DETAILS::before {
  content: "before";
  width: 70px;
  height: 70px;
  background: cornflowerblue;
}


DETAILS::after {
  content: "after";
  width: 70px;
  height: 70px;
  background: firebrick;
}