JSFiddle - React, Tailwind, and code Playground
by fristyr
HTML
<div id="triangle"></div>
CSS
#triangle {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid red;
}
by fristyr
<div id="triangle"></div>
#triangle {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid red;
}