I know:
div > p
is faster to render than
div p
but, in the other hand, it occupies one more character, so it increase the time to send the CSS file.
I know the speed difference is very little, but if you have a very large CSS file with a lot of selectors it can start being important.
So, my question is: what is better, to lose some time rendering and do not use child selectors or use child selectors and lose some more time sending the CSS file?