JSFiddle - React, Tailwind, and code Playground

by Nikolay Petrov

HTML

<div id="triangle-up"></div>

CSS

#triangle-up {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 50px solid red;
}