JSFiddle - React, Tailwind, and code Playground
by annam
HTML
<div id="outer">
<div id="inner">
<input />
</div>
</div>
CSS
#outer {
background: #eee;
}
#inner {
height: 900px;
transform: scale(0.5);
transform-origin: 0 0;
background: #ddd;
position: relative;
}
input {
position: absolute; top: 800px;
}