1.parent > son
2.parent>son
the only difference is whether there is space before and after ">",
and how is this kind of selector supported by browsers?
|
|
|
|
|
|
|
Yes, that is called a child selector, and the spaces are irrelevant. Most browsers support it, with the exception of IE6 and lower. Here's a handy compatibility table. |
|||
|
|
|
|
Absolutely, spacing doesn't matter. Of all the relevant browsers on the market, only IE6 does not support this. All the rest do. IE6 does not support anything but plain descendant selectors, like "parent son". |
||||||
|
|
|
Writing selectors together without spaces are used when you refer to the same element. The As the > operator describes a direct parent-child relation, the expression to the left can not match the same element as the expression on the right. An element can not be it's own child. Therefore writing it without spaces instead has the same meaning as writing it with spaces. |
||
|
|