Report Bug
Qus : Which CSS property is used to change the text color of an element?
Qusकिसी तत्व के टेक्स्ट का रंग बदलने के लिए किस CSS गुण का उपयोग किया जाता है?

A. text-color
B. color
C. font-color
D. All of These


Solution
B. color



Explanation

color property is used to text color using css:

Example

p{
color:red;
}

it make paragraph text color as red




Report Bug