JSFiddle - React, Tailwind, and code Playground

by cj1406942109

HTML

<!DOCTYPE html>
<html lang="en">

  <head>
    <meta charset="UTF-8">
    <title>Document</title>
  </head>

  <body>
    <div class="ele">hello</div>
  </body>

</html>

CSS

.ele {
  width: 100px;
  height: 100px;
  background: #eee;
}

.ele::after {
  content: normal;
  color: red;
}