JSFiddle - React, Tailwind, and code Playground

by Dominik Wilk

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
</head>
<body>
  <div class="menu">
<div class="test"></div>
</div>
  

</body>
</html>

CSS

.menu {
  background: red;
  height: 50px;
  width: 50px;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}


.test {
  position: absolute;
  top: 10px;
  left: 10px;
  background: blue;
  width: 50px;
  height: 50px;
}