JSFiddle - React, Tailwind, and code Playground

by liquidmetalrob

HTML

<div id='container'>
<div id='p_top'>
  Message
</div>
</div>

CSS

#p_top {
  background: #e0750c;
  height:120px;
  width:250px;
  position:relative;
  z-index: 0;
}

#p_top::after {
  top:0;
  left:0;
  content:"";
  background: #aaaaaa;
  height:150px;
  width:200px;
  position:absolute;
  z-index: -1;
}