JSFiddle - React, Tailwind, and code Playground

by blaker

HTML

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <title>Fun test</title>
    </head>
    <body>
        <div class="style-me">
            <p>Hello /r/dailywebdev!</p>
        </div>
    </body>
</html>

CSS

div.style-me {
    background-color:black;
    margin:14px;
    padding:7px;
}
    div.style-me > p {
        color:white;
    }