Answers for "background text color"

10

css underline color

u
{
	text-decoration: underline;
  	text-decoration-color: red;
}
example of use: (in html)

<p>The word <u>CAT</u>, is underlined </p>
Posted by: Guest on March-28-2020
1

text background color css

body {
	background-color:rgb(130, 50, 29);
}
Posted by: Guest on October-20-2020
5

text color css

.YourClass {
  color: #ff0000;
}
Posted by: Guest on October-14-2020
4

font color css

Don't use keywords like green, orange, red or so on because browsers will interpretate them in differen colors. Use rgb or hex instead
Posted by: Guest on December-08-2020

Code answers related to "background text color"

Browse Popular Code Answers by Language