Answers for "css transition: all 0.4s ease-in-out;"

CSS
0

transition all ease 0.3s

transition: all 0.3s ease;
Posted by: Guest on August-30-2021
0

ease in out css

.SlickReact__Card {
  transition: transform 550ms;
}
.SlickReact__Card:hover {
  box-shadow: 20px 20px 20px 3px rgb(0 0 0 / 3%);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}
Posted by: Guest on November-11-2021

Browse Popular Code Answers by Language