As far as I know, the > (#test>div
) means that the div
is required to be a direct child of #test
.
Where a space (#test div
) means that it can be a descendant/ancestor relationship. So #test p div
would be affected by simply a reference to #test div
What browsers support the first one mentioned?