JSFiddle - React, Tailwind, and code Playground

by 규연 황

HTML

<div class="box">
  <div class="box-02">
    <div class="box-03">
      <div class="box-04">00</div>
    </div>
  </div>
</div>

CSS

.box,
.box-02,
.box-03,
.box-04 {
  position: static;
}
.box {
  width: 100vw;
  height: 100vh;
  background-color: #000000;
}
.box-02 {
  width: 90vw;
  height: 90vh;
  background-color: #999999;
}
.box-03 {
  width: 80vw;
  height: 80vh;
  background-color: #666666;
}
.box-04 {
  width: 100vw;
  height: 100vh;
  background-color: rgba(255,0,0,.5);
}