What are CSS transitions?

Transitions create smooth animations when a property changes.

div {
  transition: all 0.5s;
}
div:hover {
  background: red;
}

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *