Performance: Is space or > faster in CSS?

Viewed 1861

In CSS, which is faster to process, a space or >?

For example:

#test > *

vs

#test *

(Obviously, they have different meanings, but in many circumstances they can be used interchangeably.)

2 Answers
Related