此代码在 chrome 和 firefox 中完美运行,但在 IE 中,绝对定位的 div 出现在右上角。
<div id="three_pictures">
<img alt="3steps" src="/assets/3steps.jpg">
<a href="/users/new" style="position: absolute; top: 65px; left: 50px; width: 204px; height: 256px;"></a>
<a href="/get_a_present" style="position: absolute; top: 16px; left: 273px; width: 191px; height: 303px;"></a>
<a href="/posted_presents" style="position: absolute; top: 51px; left: 508px; width: 148px; height: 276px;"></a>
</div>
和
#three_pictures
{
padding-top: 20px;
width: 700px;
position: relative;
background-color: white;
margin: 0px auto;
}
我想在图像的某些区域上有链接。