Which of the following sets the color of any text decoration, such as underlines, overlines, and strike throughs?

text-font
text-format
text-color
text-decoration-color

The correct answer is D. text-decoration-color.

text-decoration-color is a CSS property that sets the color of any text decoration, such as underlines, overlines, and strike throughs.

text-font is a CSS property that sets the font family, font style, and font size of text.

text-format is a CSS property that sets the text alignment, text indent, and text transform of text.

text-color is a CSS property that sets the color of text.

Here is an example of how to use the text-decoration-color property:

css
p {
text-decoration-color: red;
}

This will set the color of all text decorations in the paragraph to red.