79443646

Date: 2025-02-16 17:48:04
Score: 1
Natty:
Report link
@import "tailwindcss";

@theme {
}

@keyframes asd {
    0% {
        opacity: 1;
    }
    10%,
    100% {
        opacity: 0;
    }
    50%,
    100% {
        width: 0;
        margin: 0;
    }
  }

#main {
  width: 450px;
  height: 200px;
  border: solid 1px black;
  margin: 100px;
  display: flex;
  justify-content: center;
}

#one {
  width: 200px;
  height: 200px;
  border: solid 1px red;
}

#second {
  position: static;
  visibility: visible;
  width: 200px;
  height: 200px;
  border: solid 1px blue;
}

#main:hover {
  animation-duration: 1s;
  animation-name: make-small;
  animation-fill-mode: forwards;
}

#main > *{
  margin: 0 auto;
  }

#main:hover #second {
  animation-duration: 1s;
  animation-name: asd;
  animation-fill-mode: forwards;
}

done: https://play.tailwindcss.com/JniN5UninR?file=css

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Priyansh Bisht