Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body style="background-color:yellow;"> <h1>HTML Style Object</h1> <h2>The backgroundColor Property</h2> <p>The background color is:</p> <p id="demo"></p> <script> let color = document.body.style.backgroundColor; document.getElementById("demo").innerHTML = color; </script> </body> </html>