JSFiddle - React, Tailwind, and code Playground

by Ganesh Yadav

HTML

<div id="web" class="well">
<div style="padding:19px">
<a style="text-decoration:none;" class="boxclose web_close"></a>
<h2 style="color:#242424; font-weight:bold;"><em style="color:#4fd886;">&mdash;</em>  Web.</h2>
<p></p>
</div>
</div>

CSS

.well{
    position:relative;
    float:left;
}
.well:before { 
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left:0;
    border:1px solid red;
}