JSFiddle - React, Tailwind, and code Playground
by rough cheap
HTML
<div>
This div element is moved 50 pixels to the left, and 100 pixels down from its current position.
</div>
CSS
div {
width: 300px;
height: 100px;
background-color: yellow;
border: 1px solid black;
-ms-transform: translate(50px, 100px);
transform: scale(0.5, 0.5);
}