JSFiddle - React, Tailwind, and code Playground

by 규연 황

HTML

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

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

SCSS

.box {
  position: relative;
  margin: 30px;
  width: 200px;
  height: 200px;
  background: #000;
  .inner {
    position: absolute;
    inset: 50px;
    background: red;
    transition: inset 1s ease-in;
  }
  .inner2 {
    position: absolute;
    inset: 0;
    height: 200px;
    background: red;
    transition: width 1s ease-in;
  }
  &:hover {
    .inner {
      inset: 0;
    }
    .inner2 {
      width: 200px;
      height: 200px;
    }
  }
}