InterviewSolution
Saved Bookmarks
| 1. |
The following code intends to centralize the image mypic.gif in browser window however, the desired result is not coming. Can you point out the reason for it and a solution for it ? |
|
Answer» The attribute align has no value center. It can take values left, right, top, middle and bottom. The right code is<IMG src-mypic.gif align =middle> |
|