此代碼在Chrome和Firefox中完美工作,但在IE中絕對定位的div出現在右上角。絕對定位在IE中不起作用
<div id="three_pictures">
<img alt="3steps" src="/assets/3steps.jpg">
<a href="https://stackoverflow.com/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;
}
我希望有在圖像的某些區域鏈接。
['id'屬性不能以數字開頭](http://www.w3.org/TR/html4/types.html#type-name)。 – DCoder