JSFiddle - React, Tailwind, and code Playground

by mflodin

HTML

<div class="shady">
    The not so slim shady
</div>

CSS

div {
  width: 100px;
  height: 100px;
  background-color: #ffa;
  border: 1px solid black;
  top: 100px;
  left: 100px;
  position: absolute;
 
      
}

.shady {
  -moz-box-shadow: 3px 3px 4px #000;
    -webkit-box-shadow: 3px 3px 4px #000;
    box-shadow: 3px 3px 4px #000;
    /* For IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
    /* For IE 5.5 - 7 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
}          
}