Take for instance the following code snippet: (I am familiar with using a star in CSS selectors, but not with '> *')
.row > * {
float: right;
}
And then there's this one:
.row.uniform > * > :first-child {
margin-top: 0;
}