JSFiddle - React, Tailwind, and code Playground

HTML

<div class="scale">
    Let's pretend this is a large div.
</div>
<div>
    And this is another guy next to it.
</div>
<br />
<div>
    Let's pretend this is a large div.
</div>
<div>
    And this is another guy next to it.
</div>

CSS

div.scale {
    -webkit-transform:scale(0.4);
    -moz-transform:scale(0.4);
    -ms-transform:scale(0.4);
    transform:scale(0.4);
}