In my aspx file I have img tag and map tag related its,
<IMG id="imgLogo" src="images/baner.jpg" usemap="#map">
<map name="map" style="display:block; position:relative;">
<area id="myArea" shape=poly coords="803, 1, 952, 1, 988, 108, 840, 112" href=MainNew.aspx alt="this is a link!!"/>
</map>
When I run the page as web application it works properly but when I run its as html application, the area position is not relative and moves when I change the browser size. How can I fix it?