JSFiddle - React, Tailwind, and code Playground
by kirkaracha
HTML
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
<div class="triangle"></div>
</body>
</html>
CSS
.triangle {
width: 0;
height: 0;
border-top: 0;
border-bottom: 30px solid #666699;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
}