Answers for "css how to set transition"

CSS
1

css transition syntax

transition: all 300ms ease-in-out;
Posted by: Guest on October-02-2021
0

details transition css

details[open] summary ~ * {
  animation: sweep .5s ease-in-out;
}

@keyframes sweep {
  0%    {opacity: 0; transform: translateX(-10px)}
  100%  {opacity: 1; transform: translateX(0)}
}
Posted by: Guest on December-16-2021

Browse Popular Code Answers by Language