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