โ Back to HTML DOM
Question 127
Set an Element's Text Color
Set an Element's Text Color
Select the paragraph with id="msg" and set its textcolorto "red" using thestyleproperty. Platform-Provided HTML (READ-ONLY): <p id="msg">Warning</p> Steps: 1. Select the paragraph withdocument.getElementById(). 2. Setelement.style.colorto "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.