JSFiddle - React, Tailwind, and code Playground

by Katyes Cipottt

HTML

<div class="lolek">
  test
</div>

<div class="bolek">
  bolek
</div>

CSS

.lolek {
  width: 50px;
  height: 40px;
  color: black;
  background-color: crimson;
  // position: static; - privzeto pozicioniranje, naravna pozicija
  position: relative;
  top: 50px;
  left: 30px;
}

.bolek {
  background-color: indianred;
  width: 60px;
  height: 20px;
}