JSFiddle - React, Tailwind, and code Playground

by Andrew Dunai

HTML

<div class="pzdc">What the fuck!</div>

CSS

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.pzdc {
    font-family: sans-serif;
    font-size: 12px;
    line-height: 12px;
    background: #FF2200;
    padding: 10px;
    margin: 0 20px;
    display: inline-block;
}

.pzdc:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 32px;
    background: #00AA00;
    margin: -10px 0 0 -20px;
    transform: skew(-15deg);
}

.pzdc:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 32px;
    background: #0000AA;
    margin: -10px 0 0 5px;
    transform: skew(-15deg);
}