JSFiddle - React, Tailwind, and code Playground

HTML

<div class="relative black blue">
  <div class="block red absolute"></div>
  <div class="inner">
    <h1>sds</h1>
    <h1>sdsds</h1>
    <h1>sdsds</h1>
    <h1>sdsds</h1>
  </div>
</div>

CSS

.block {
  width: 100px;
  height: 100%;
}

.black {
  background-color: black; 
}
.red {
  background-color: red;
}
.blue {
  color: blue;
}

.relative {
  position: relative;
  width: auto;
  padding: 10px;
}
.absolute {
  position: absolute;
}

.inner {
  position: relative;
}