JSFiddle - React, Tailwind, and code Playground

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: 60px solid #fee;
    border-left: 40px solid transparent; 
    border-right: 40px solid transparent;
}

/* rgba(255, 255, 255, 0) */