JSFiddle - React, Tailwind, and code Playground
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;
margin-top: 200px;
margin-bottom: 20px;
margin-left: 150px;
margin-right: 20px;
}
</style>
</head>
<body>
<div>Div element!</div>
</body>
</html>