JSFiddle - React, Tailwind, and code Playground

by Ammi Reddy Kovvuri

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Testing</title>
</head>
<body>
    <div class="parent">
      <div class="child1"></div>
      <div class="child2"></div>
      <div class="child3"></div>
      <div class="child4"></div>
    </div>
</body>
</html>

CSS

.parent {
  background: #fffaaa;
  width: 100%;
  height:100vh;
  position: relative;
}
.child1 {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  background: #333;
}