JSFiddle - React, Tailwind, and code Playground
by slawe
HTML
<div></div>
CSS
div {
width:200px;
height:100px;
background:black;
margin:15px;
position:relative;
}
div:before {
content:"";
position:absolute;
top:0;
right:0;
width: 0;
height: 0;
border-bottom: 100px solid white;
border-left: 20px solid transparent;
}