css - SCSS: change color of link inside of block (on block hover) -


can use code (scss):

#block {   &:hover {     #link_inside_of_block {       new style link in block: on block hover;     }     } } 

i've written code, doesn't work me.

try this:

#block {   #link_inside_of_block {     &:hover {       new style link in block: on block hover;     }     } } 

Comments