What will the following CSS do?
p { color: initial; }
Sets the text color of the paragraph to the browser's initial color.
Paragraphs will inherit the color from their parent element.
Paragraphs will have a random color.
Paragraphs will have a default white color.