JSFiddle - React, Tailwind, and code Playground

by Van Hai Le

HTML

<div class="box">
	<div class="inner-box"></div>
</div>

CSS

.box {
	height: 100px;
	width: 100px;
	border-radius: 4px;
	overflow: hidden;
	/* background: red; */
	box-sizing: border-box;
}
.inner-box {
	height: 100%;
	width: 100%;
	border: 2px solid skyblue;
}