CSS Background Color
How to set the background color for html tags using style sheet?
How to assign background color for few words?
Explanation
Property:
BackGround ColorUsage:
background-color: red;
background-color: #343434;
background-color: transparent;
Definition:
Background Color in html can be set using the css property background-color.
It accepts values in two formats
a) Color name
b) #xxyyz where xx,yy,zz points to hexadecimal values of red,green,blue
c) Transparent background can also be set in css.
Examples
Example 1:
Example 2:
Example 3: