Computer Science, asked by nirmalvarghese46, 8 months ago

How will you make all paragraph elements 'RED' in color ?
p.all {color: red;}
p.all {color: #990000;}
all.p {color: #998877;}
p {color: red;}

Answers

Answered by sandeepsingh1986sksi
5

Answer:

How will you make all paragraph elements 'RED' in color ?

A.p.all {color: red;}B.p.all {color: #990000;}

C.all.p {color: #998877;}D.p {color: red;}

Answer : p {color: red;} [Option : D]

Explanation:

plz mark as brainliest

Answered by nancychaterjeestar29
0

Answer:

The answer is option (d) p{color: red;}.

Explanation:

In this question, we have to answer that if we want to make all paragraph elements 'RED' in color then what command would we used for this purpose. For this purpose we would use p{color : red;} command.

We would use this command for the inline style in which if we want to change set text color to the red color then we would use this command. With the little modification in same code we can change the border color to the red color , in the same way if we want to change the background with the red color then we can also change it with the little modification in the code.

But for now as per the question the correct answer is option (d) p{color: red;}.

#SPJ3

Similar questions