JSFiddle - React, Tailwind, and code Playground

by Bacher

HTML

<div class="content">Text</div>

CSS

body {
    background-color: #aaa;
    margin: 40px;
    font-size: 48px;
}

.content {
    position: relative;
    padding: 25px;
    display: inline-block;
    background-color: white;
    border-radius: 25px;
    z-index: 1;
    box-shadow: 0 0 0 1px #dce7f3;
}

.content:before {
    content: '';
    background-color: #dce7f3;
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: 7px;
    right: 7px;
    border-radius: 20px;
    z-index: -1;   
}

.content:after {
    content: '';
    position: absolute;
    background: url(http://savepic.org/4133383.png);
    width: 59px;
    height: 42px;
    left: 50px;
    bottom: -34px;
}