What does the following CSS snippet do?
body * { color: blue; }
Sets the background color of body and all its child elements to blue.
body
Has no effect.
Sets the text color of all elements inside body to blue.
Sets the border color of body to blue.