Which css property is used to change the text color of an element? Fgcolor text-color color none
Answers
Answered by
19
Answer:
To change the text color for every paragraph in your HTML file, go to the external style sheet and type p { }. Place the color property in the style followed by a colon, like p { color: }. Then, add your color value after the property, ending it with a semicolon: p { color: black;}.
.
hope it will help you in computer science
Answered by
0
Answer:
Text-color property is used to set the color of the text.
Explanation:
Text-color property is used to set the color of the text.
Text-color can be set by using the name “red”, hex value “#ff0000” or by its RGB value“rgb(255, 0, 0).
Syntax:
body
{
color:color name;
}
-----------------------------------------------------------------------------------------------------
#SPJ3
Similar questions