CSS: Colors

Joel Ross

LIS 549

In this video...

  • Specifying Colors

  • Color Models

Color

You can change the color of text using the color property, and the background of any element using the background-color property.

p {
  color: purple;
  background-color: gold;
}

Color

You can change the color of text using the color property, and the background of any element using the background-color property.

p {
  color: purple;
  background-color: gold;
}

lis549-colors

By Joel Ross

lis549-colors

  • 166