There are three paragraphs of safety warnings on a web page that will all have the same CSS rule applied to them. How is this accomplished?

(1 point)
Responses

by adding class=”warnings” to the CSS rule

by adding class=”warnings” to the CSS rule

by adding class=”warnings” to the paragraph tags

by adding class=”warnings” to the paragraph tags

by giving the paragraphs the same ID

by giving the paragraphs the same ID

by listing the CSS rule three times in the style sheet

by listing the CSS rule three times in the style sheet

1 answer

The correct response is:

by adding class=”warnings” to the paragraph tags

This allows all three paragraphs to share the same styling defined for the class "warnings" in the CSS.