I don't know how they are different in css
something
{
   //some properties
}
something >.somethingelse
{
   // something else's properties
}
and
something
{
   //some properties
}
something .somethingelse
{
   // something else's properties
}
I don't know why there is such a > in the second case. Should there also be a < for use too ?