Comprehensive guide to modern HTML and CSS development.
Colors in CSS can be specified in several ways:
red, blue, transparent.#FF0000. A 6-digit code representing Red, Green, and Blue.rgb(255, 0, 0) or rgba(255, 0, 0, 0.5) (The A stands for Alpha/Opacity).The background shorthand property allows you to set the color, image, repeat behavior, position, and size of an element's background.
Edit the code below and click Run to see the result live.