JSFiddle - React, Tailwind, and code Playground

by Mark McFadden

HTML

<div id="diamond"><br/>What?</div>

CSS

#diamond {
	width: 0;
	height: 0;
	border: 50px solid transparent;
	border-bottom-color: yellow;
	position: relative;
	top: -50px;
}
#diamond:after {
	content: '';
	position: absolute;
	left: -50px;
	top: 50px;
	width: 0;
	height: 0;
	border: 50px solid transparent;
	border-top-color: yellow;
}