JSFiddle - React, Tailwind, and code Playground

by igalst

HTML

<div class="myclass" id="myid">i'm a div</div>

CSS

div {
    border: solid 1px red;
}

.myclass {
    text-align: center;
    border: solid 10px blue;
}

#myid {
    font-size: 20px;
    border: dotted 50px yellow;
}

#myid {
    border: dashed 20px green;
}