JSFiddle - React, Tailwind, and code Playground

by shimmy

HTML

<div id="wrapper">
    <div class="box">&nbsp;</div><div class="box">&nbsp;</div><div class="box">&nbsp;</div><div class="box">&nbsp;</div>
</div>

CSS

#wrapper{
    position: fixed;
    top: 20px;
    left: 20px;
}
.box {
    background: #817E77;
    display: inline-block;
    width: 100px;
    height: 40px;
    box-shadow: inset 10px 0px 10px -4px #514E49;
  	float:left;
}