CJCoding With Joseph

Set an Element's Text Color

Select the paragraph with id="msg" and set its text color to "red" using the style property.

Platform-Provided HTML (READ-ONLY):
<p id="msg">Warning</p>

Steps:
1. Select the paragraph with document.getElementById().
2. Set element.style.color to "red".

Expected Output:

The #msg element has style color: red
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.