JSFiddle - React, Tailwind, and code Playground

by ajcw

HTML

<div class="outer">
    
    <div class="inner">hello</div>


</div>

CSS

body {
    padding: 0;
}

.outer {
     margin-top: 200px;
     overflow: hidden;   
}

.inner {
    width:200px;
    height: 200px;
    margin: 0 200px 200px 200px;
    -moz-box-shadow: 0px 5px 200px #00C0FF;
    -webkit-box-shadow: 0px 5px 200px #00C0FF;
    box-shadow: 0px 5px 200px #00C0FF;
}