โ Back to HTML DOM
Question 136
Set an Image's Width
Set an Image's Width
Select the image with id="pic" and set itswidthattribute to "200" usingsetAttribute(). Platform-Provided HTML (READ-ONLY): <img id="pic" src="cat.png"> Steps: 1. Select the image withdocument.getElementById(). 2. CallsetAttribute("width", "200").
Expected Output:
<img id="pic" src="cat.png" width="200">
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.