JSFiddle - React, Tailwind, and code Playground

by Michael Tsai

HTML

<!DOCTYPE html>
<html>

<head>
  <link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
</head>

<body>
<button class="bg-blue-500 text-red font-bold py-2 px-4 rounded">
  Button
</button>
<div class="box-border h-20 w-32 p-4 border-4 border-gray-400 bg-gray-200">
  <div class="h-full w-full bg-gray-400"></div>
</div>
<div class="shadow-2xl">test</div>
</body>
</html>