JSFiddle - React, Tailwind, and code Playground
by HDL52
HTML
<div id="triangle"></div>
CSS
body, html {
width: 100vw;
height: 100vh;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
}
#triangle {
width: 0;
height: 0;
border-bottom: 100px solid red;
border-right: 100px solid transparent;
}