DONT ADD ANYTHING HERE!

  1. The background-color CSS property sets the background color of an element
  2. The background-color property is specified as a single color value
  3. color
    1. The uniform color of the background
    2. It is rendered behind any background-image that is specified, although the color will still be visible through any transparency in the image

Example

Orange Strip
background-color:lightgoldenrodyellow

Notes

  1. The background-color is yellow
  2. The orange triangle-with-transparent-square is a background-image
  3. The green strip is a foreground (ordinary) image

Code

CSS

.outer {
    background-image: url("../images/myOrangeTriangle100_81.png");
    background-repeat: no-repeat;
    background-position: center;
}

.bkgcolor {
    background-color: lightgoldenrodyellow;
} 

References