JSFiddle - React, Tailwind, and code Playground

by oraclepadawan

HTML

<html>

<head>
</head>

<body>
    <style>
        div {
            position: fixed;
            width: 300px;
            left: 80px;
            top: 20px;
            background-color: yellow;
            color: white;
            text-align: center;
        }
    </style>
    <div>
        <p>Div 1</p>
    </div>
</body>

</html>