I'm working on a project that needs a specific element. It is a Bordered Triangle like the picture below. Is it even possible to make this object in HTML/CSS.
Simple triangles only have straight borders
.tri {
display: inline-block;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 80px solid blue;
}
<div class="tri"></div>
