Although I wouldn't consider myself a CSS expert, I usually can figure out how to manipulate code to achieve my desired result.
However, the CSS code snippet below has me puzzled and I haven't been able to find any resources to help me make sense of it.
#testmenu li:hover > a{
color: #fafafa;
}
I get that this code is targeting the hover state of an li element within the testmenu ID, but the "> a" part is throwing me off. Can anyone explain what this is doing?