JSFiddle - React, Tailwind, and code Playground

by fullyslick

HTML

<div id="shell">
    <div id="title">TITLE HERE</div>
    <div id="content">Article Content Goes Here</div>
</div>

CSS

body{
  background: black;
}
#shell {
 width:500px;
 height:300px;
 background:lightGrey; 
 border-radius: 10px 10px 10px 10px;
 overflow:hidden;
}

#title {
 background:green;
 padding:5px;
}