JSFiddle - React, Tailwind, and code Playground

by avgaltsev

HTML

<div class="triangle" style="margin: 20px;"></div>

CSS

.triangle {
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #e0e0e0;
}