JSFiddle - React, Tailwind, and code Playground

by Max Sinev

HTML

<div class="b">
  <div class="a">wefwefwefewf</div>
</div>

CSS

.b {
  width: 300px;
  height: 100px;
  margin-left: 200px;
  background: green;
  position: relative;
}

.a {
  position: absolute;
  left: 0;
  transform: translate(-100%);
  margin-left: -10px;
}