What does the following CSS snippet do?
.container p { color: rgb(255, 0, 0); }
Changes the border color of paragraphs within .container to red.
.container
Makes no change.
Changes the background color of paragraphs within .container to red.
Changes the text color of all paragraphs within .container to red.