Answers for "css color change"

CSS
3

css onclick change color

<style>
.dabutton:focus {
    background-color:yellow;
}
</style>
<button class="dabutton"></button> // <-- usage
Posted by: Guest on July-03-2020
9

css change text color

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

changong text color css

color: #EAF6F6;

color: red;

color: rgb(255, 255, 255);
Posted by: Guest on May-03-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