Answers for "out transition does not ease"

CSS
0

out transition does not ease

.button {
    transition: all 0.35s ease-in-out;   /* Hover off */
}
.button:hover {
    transition: all 1s ease-in;         /* On hover */
}
Posted by: Guest on May-09-2021

Browse Popular Code Answers by Language