JSFiddle - React, Tailwind, and code Playground

by Nathan Piper

HTML

<body bgcolor="black">
    <div class="rectangle" ;></div>
    <div class="rectangle2"></div>
</body>

CSS

.rectangle {
    height: 200px;
    width: 35px;
    background: red;
    position: relative;
    top: 250px;
    border-radius: 3px;
    padding-right: 3px;
    left: 780px;
}
.rectangle2 {
    height: 200px;
    width: 35px;
    background: blue;
    position: relative;
    border-radius:3px;
    padding-right:3px;
}