JSFiddle - React, Tailwind, and code Playground

by luka kupunia

HTML

<div class="body">
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
</div>

CSS

body {
  margin: 0;
}
* {
  box-sizing: border-box;
}
div.body {
  width: 100%;
  position: relative;
}
div.box {
  width: 25%;
  height: 300px;
  background: purple;
  opacity: .8;
  border: 3px solid black;
  position: absolute;
  top: 0;
}

JavaScript

var a = document.querySelectorAll('.box');
for( var i = 0; i < a.length ; i++ ) {
	a[i].style.left = i * 25 + '%';
}