RGB Values
In RGB, each of these three color values is represented as a decimal-based number, comma separated. These values are almost always wrapped in a rgb(rrr, ggg, bbb)
.
CSS
/* Black as a RGB value: */
p {
color: rgb(0, 0, 0)
}
- Previous
- Next