HTML & CSS Masterclass Tutorial

Comprehensive guide to modern HTML and CSS development.

Colors & Backgrounds

Colors & Backgrounds

Colors in CSS can be specified in several ways:

  • Keywords: red, blue, transparent.
  • HEX: #FF0000. A 6-digit code representing Red, Green, and Blue.
  • RGB / RGBA: rgb(255, 0, 0) or rgba(255, 0, 0, 0.5) (The A stands for Alpha/Opacity).
  • HSL: Hue, Saturation, Lightness. Great for building color palettes.

Backgrounds

The background shorthand property allows you to set the color, image, repeat behavior, position, and size of an element's background.

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics