JSFiddle - React, Tailwind, and code Playground

by tonkec palonkec

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style>
    div {
      width: 100px;
      height: 100px;
      background-color: blue;
      color: white;
      padding: 100px;
      line-height: 100px;
    }
  </style>
</head>
<body>
  <div>Div element!</div>
</body>
</html>