JSFiddle - React, Tailwind, and code Playground

by cj1406942109

HTML

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

  <head>
    <meta charset="ISO-8859-2">
    <title>Document</title>
  </head>

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

</html>

CSS

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

.ele::after {
  content: url(http://www.mozilla.org/favicon.ico);
}