Answers for "css do box shadows transition?"

CSS
0

box shadow css transition

/* Scale up the box */
.box:hover {
  transform: scale(1.2, 1.2);
}

/* Fade in the pseudo-element with the bigger shadow */
.box:hover::after {
  opacity: 1;
}
Posted by: Guest on October-08-2021

Browse Popular Code Answers by Language