Answers for "css tricks animation transition"

CSS
2

css tricks transition

div {
  transition: all 0.5s ease;
  background: red;
  padding: 10px;
}
div:hover {
  background: green;
  padding: 20px;
}
Posted by: Guest on March-12-2020

Browse Popular Code Answers by Language