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: 18px;
    display: inline-block;
    background-color: #dce7f3;
    border-radius: 12px;
}

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

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