Css Change Color

css change color
p {
color: blue;
}
css onclick change color
<style>
.dabutton:focus {
background-color:yellow;
}
</style>
<button class="dabutton"></button> // <-- usage
css change text color
p{
color: White;
}

Leave a Comment