JSFiddle - React, Tailwind, and code Playground

by danield770

HTML

<div class="arrow"></div>

CSS

.arrow {
    position:relative;
}

.arrow:before {
    content:'Ă—';
    display:inline-block;
    position: absolute;
    font-size: 240px;
    font-weight: bold;
    font-family: verdana;
    width: 103px;
    height: 151px;
    overflow: hidden;
    line-height: 117px;
}

.arrow:after {
    content:'';
    display:inline-block;
    position: absolute;
    left:101px;
    top:51px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 24px;
    border-color: transparent transparent transparent black;
}