JSFiddle - React, Tailwind, and code Playground

by Scott Kaye

HTML

<div></div>

CSS

div {
	height: 200px;
	background: red;
	width: 200px;
	transition: all 250ms ease;
}

div::before {
	content: "please don't hover over me";
}

div:hover {
	height: 1px;
}

div:hover::before {
	content: "AHHHHH";
}