โ Back to HTML DOM
Question 128
Set a Background Color
Set a Background Color
Select the element with id="banner" and set itsbackgroundColorstyle to "yellow". Platform-Provided HTML (READ-ONLY): <div id="banner">Welcome</div> Steps: 1. Select the element withdocument.getElementById(). 2. Setelement.style.backgroundColorto "yellow".
Expected Output:
The #banner element has style background-color: yellow
Topics:
HTML DOM
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (clog, fn, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.