css property that changes text color code example
Example 1: text background color css
body {
background-color:rgb(130, 50, 29);
}
Example 2: text color css
.YourClass {
color: #ff0000;
}
body {
background-color:rgb(130, 50, 29);
}
.YourClass {
color: #ff0000;
}