CSS Introduction

CSS Tutorial What is CSS CSS Syntax CSS Selector How to include CSS CSS Comments

CSS Attributes

CSS Background CSS Border CSS Display CSS Float CSS Font CSS Color CSS Hover CSS Important CSS Line-height CSS Margin CSS Opacity CSS Filter CSS Images CSS Overflow CSS Padding CSS Position CSS Vertical align CSS White space CSS Width Word-wrap in CSS Box-shadow in CSS Text-transform in CSS CSS Outline CSS Visibility CSS Counters CSS Clear fix CSS Icons CSS Justify-content Text-decoration in CSS CSS Lists CSS nth selector CSS Sticky CSS Background-clip CSS Checkbox-style CSS Letter-spacing CSS Navigation bar CSS Overlay CSS Root CSS Specificity CSS Text-indent CSS Text-stroke CSS Zoom CSS Order CSS Descendent selector CSS Clip CSS calc() CSS Background-blend-mode CSS radio-button CSS Superscript and subscript CSS Text-effects CSS Text-align CSS Variables CSS Page-break-before CSS Page-break-inside CSS Page-break-after CSS Content property CSS Word-spacing CSS Animation CSS @keyframes rules CSS Pseudo-classes CSS Pseudo-elements CSS Radial-gradient CSS Translate CSS Gradients CSS z-index CSS Loaders CSS Units CSS Transition CSS Masking CSS Arrow CSS Pagination

Questions

What is Bootstrap CSS What is CSS used for How to center a table in CSS What is a CSS File How to center a button in CSS How to change background color in CSS How to change the font in CSS How to change font size in CSS How to resize an image in CSS How to get rid of bullet pioints in CSS Is CSS a programming language How to edit CSS in WordPress How to use google fonts in CSS How to create blinking text using CSS How to Set Space between the Flexbox Is CSS a Programming Language

Difference

Difference between HTML and CSS Grid Vs Flexbox in CSS Difference between CSS Grid and CSS Flexbox

Misc

Create a 3D text effect using HTML and CSS Hover condition for a:before and a:after in CSS Bem CSS Boder Types CSS Features of CSS Font Face CSS Image Overlay CSS B Tag CSS Carousel CSS CSS Arrow CSS Focus Flex Grow in CSS Bem CSS Features of CSS Font Face CSS Removing Underline from Link in CSS Width Property in CSS Radio Button in CSS

CSS Background Color

  • It is one of the CSS properties to apply styling to html elements.
  • This property is used to apply the background color to any HTML element.
  • The background of an element includes everything except margin. It includes its total size, border, and padding.

Syntax

html_tag_element{
   background-color: colorName | initial | transparent | inherit;  
}  

Explanation:

  1. colorName: color name can be specified in many formats like
    1. standard color name - It specifies standard color name like red, blue, cyan, etc.
    2. rgb() value -  It takes the color in rgb format like rgb(value1, value2, vlaue3) like rgb(0, 0, 0) for black color
    3. hexadecimal value - It takes the color in hexadecimal value of format #xxxxxx like use #000000 for black color. This color format gives wide varierty of colors to user
    4. rgba() value – It is extended from rgb(). It stands for red green blue alpha. Here, alpha represents the opacity of color. The range of alpha parameter varies from 0.0 to 1.0 where 0.0 is fully transparent and 1.0 not transparent. Like for black color we specified rgba(0, 0, 0, 1) where rgba(0,0,0,0) represents the white color.
    5. hsl() – It stands for hue, saturation, and lightness. It is also a type of color-defining technique. Hue defines the color from a color wheel of 360 degrees. Saturation represents the shade of grey, and lightness represents the lightness of color like 0% is black while 100% is white.
    6. hsla() – It is extended from hsl(). Here also “a” stands for alpha and represemts the opacity for color.
  2. transparent: It specifies the default background color for an element.
  3. initial: It is a keyword that applies the default value of an element to it. It applies to all HTML elements.
  4. Inherit: It inherits the background-color property from its parent.

Examples

Let’s discuss some coding examples.

Example 1:

<html>
<head>
<title> CSS background color property example</title>
</head>
<body style="background-color: red">
<p>CSS background color</p>
</body>
</html>

Output:

CSS Background Color

In above code, same red color can be represented using rgb(), hsl() and hexadecimal as below:
rgb(255, 0, 0)
hsl(0, 1, 0.50)
#FF0000