html - Highlight value on hover -


i'm trying highlight text inside .category-value class on hover on div class month-hover apply #197abf color. ie., "jan" text should of color #197abf on hover on div.

i tried applying below css,but not working(as highlighting on mouse hover on jan or feb).

.month-hover>.category-title:hover{     color:#197abf; }  

plunker link here

you forgot dot (.) before category-title class:

.month-hover > .category-title:hover {     color: #197abf; }  

Comments

Popular posts from this blog

python Tkinter Capturing keyboard events save as one single string -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

javascript - Z-index in d3.js -