JSFiddle - React, Tailwind, and code Playground

by jimousse

HTML

<div class="one">
	<button class="two">
		<div class="three">
			Hello
		</div>
	</button>
</div>

CSS

.one {
	height: 300px;
	display: flex;
	flex-direction: column;
	border: 1px solid black;
}

.two {
	background: lightcoral;
	flex: 1;
}

.three {
	background: lightgoldenrodyellow;
}