Copyright © tutorialspoint.com

CSS - background-color

previous next


Description:

background-color sets a solid color for the entire background, including the padding and border background, of an element.

Possible Values:

Applies to:

All the HTML elements.

DOM Syntax:

object.style.backgroundColor="Any value as defined above";

Example:

<p style="background-color:yellow;">
This text has a yellow background color.
</p>

This will produce following result:

This text has a yellow background color.

To Become more comfortable - Do Online Practice


previous next

Copyright © tutorialspoint.com