InterviewSolution
Saved Bookmarks
| 1. |
The following code is written to align the image in center in the browser’s window. However, the>desired result is not achieved. Mention the reason. <img src = “image.jpg” align = “center”> |
|
Answer» The reason for not getting the desired result is that center is not a value of align attribute in the <img> tag. |
|