How to do CSS on hover targeting styles of a selector with two element names -


i know can change style of selector on hover of selector, doesn't work when selector need change uses 2 element names this:

doesn't work. anyway make work css?

.menu-btn:hover .menu-btn span  {     /*styles*/ } 

works

.menu-btn:hover span  {      /*styles*/ } 

.menu-btn:hover span, .menu-btn span  { /*styles*/ 

}


Comments

Popular posts from this blog

php - Cannot override Laravel Spark authentication with own implementation -

What is happening when Matlab is starting a "parallel pool"? -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -