I'm using Vue-Bootstrap framework, I want to rewrite the css rule for tag 'option' when you hover the element
My code is like this jsfiddle
option:hover {
background-color: red;
}
Why the background-color in 'option:hover' change the background when is not hover event, and not when is a hover event?
Thanks!