Descripción
background-color establece un color sólido para todo el fondo, incluido el relleno y el fondo del borde, de un elemento.
Valores posibles
Se aplica a
Todos los elementos HTML.
Sintaxis DOM
object.style.backgroundColor = "Any value as defined above";
Ejemplo
<html>
<head>
</head>
<body>
<p style = "background-color:yellow;">
This text has a yellow background color.
</p>
</body>
</html>
Esto producirá el siguiente resultado: