CSS background-color Property

CSS background-color Property

CSS background-color Property


CSS background-color property sets an element background color. The background of an element is the total size of it which includes padding and border (but not the margin).

So, for setting a background color you need to choose any color. You can choose colors from our Color Picker tool. The color can be written like the following types: a color name - "red", a HEX value - "#ff0000" and an RGB value - "rgb(255,0,0)".

It is important to ensure that the contrast ratio between the background color and the color of the text placed over it is high enough, so people with low vision will be able to read the content of the page.

Initial Valuetransparent
Applies toAll elements. It also applies to ::first-letter and ::first-line.
InheritedNo.
AnimatableYes. The color of the background is animated.
VersionCSS1
DOM Syntaxobject.style.backgroundColor = "#FFFFFF";

Syntax

background-color: color | transparent | initial | inherit;

Example of the background-color property:

<!DOCTYPE 
<
  <
    <
      </
  </
  <
    <Background-color Property Example</
    <Here the background-color is specified with a hex value.</
  </
</
You can set hexadecimal, RGB, RGBA, HSL, HSLA or color names as a value for the background-color property. Learn more about HTML Colors.

Example of the background-color property with the "transparent" value: 

<!DOCTYPE html>
<html>
  <head>
    <style>
      body {
        background-color: transparent;
      }
    </style>
  </head>
  <body>
    <h2>Background-color Property Example</h2>
    <p>In this example the background-color is set to transparent. This is the default value.</p>
  </body>
</html>

Example of the animated version of the background-color property:

<!DOCTYPE html>
<html>
  <head>
    <style>
      body {
        background-color: #eee;
        animation: mymove 5s infinite;
      }
      @keyframes mymove {
        30% {
          background-color: #1c87c9;
        }
      }
    </style>
  </head>
  <body>
    <h2> Animation of background-color property</h2>
    <p>
      In this example it gradually changes the background color from grey to blue, and back to grey.
    </p>
  </body>
</html>

Values

ValueDescription
transparentThis is the default value and it defines the background color as transparent. It means that there is no background color.
colorDefines the background color. Color names, hexadecimal color codes, rgb(), rgba(), hsl(), hsla() can be used.
initialSets the property to its default value.
inheritInherits the property from its parent element.

Reactions

Post a Comment

0 Comments

close