Answers for "change color css"

CSS
17

text color css

.class {
  color: white;
}
Posted by: Guest on December-15-2020
9

css change text color

p{
	color: White;
}
Posted by: Guest on May-14-2020
1

text background color css

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

changing element color css

<style>
  h2 .red-text {
    color: red;
  }
</style>

<h2 class="red-text" color=red;>CatPhotoApp</h2>
Posted by: Guest on October-22-2021

Browse Popular Code Answers by Language