JSFiddle - React, Tailwind, and code Playground
by Keith Henry
HTML
<div id=outer>
<div id=inner>
</div>
</div>
CSS
#outer {
background-color: blue;
padding: 3px;
}
#inner {
background-color: red;
width: 400px;
height: 400px;
-moz-transform: scale(0.5);
-webkit-transform: scale(0.5);
transform: scale(0.5);
}