Possible Duplicate:
What does “>” mean in CSS rules?
what's the use of > in css? like this ul li:hover > ul or ul li > li. >_<, i'm still new to web dev. can tell me when and how to use this >? and what does it call? like uh greater than? lol im sorry im really new.
#navMenu li > ul
{
display:none;
position:absolute;
}
#navMenu li:hover > ul
{
display:block;
width:100px;
}
#navMenu li > ul li > ul
{
left:100%;
top:0;
width:100px;
}