I was facing one issue all the time. For example we have the following HTML code:
li:hover{
color:rgb(73, 207, 248);
transition: 1s;
}
Color changes with transition when we move mouse on it, but when we move away, transition does't work, and changes happen immediately.
Can someone help me please why is this happening? Thank you in advance.