0
Background
how do you color a background?
1 Antwort
+ 2
Assuming this is for a website that includes CSS, you can add the background-color property to that element with a hexadecimal, rgba, or colour name to represent whatever colour you want the background to be.
.yourelement{
background-color: #629727;
}