CJCoding With Joseph

Set a Background Color

Select the element with id="banner" and set its backgroundColor style to "yellow".

Platform-Provided HTML (READ-ONLY):
<div id="banner">Welcome</div>

Steps:
1. Select the element with document.getElementById().
2. Set element.style.backgroundColor to "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.