我试图制作一个简单的 html 和 CSS 东西:我有一个带有相对位置的巨大 div,然后有很多包含绝对位置的链接..
它在 FF 和 chrome 中运行良好,但在 IE 中非常糟糕。
似乎在 IE 中定位不好,也没有得到“margin: 0 auto;” 东西。。
这是我的代码:
HTML:
<div class="wpr">
<a href="http://www.leumi.co.il/" target="_blank" id="leumi"></a>
<a href="http://www.oren-ins.co.il/" target="_blank" id="oren"></a>
<a href="http://www.energy.org.il/" target="_blank" id="energy"></a>
<a href="http://www.lionorl.co.il/" target="_blank" id="leon"></a>
<a href="http://www.calcalist.co.il/" target="_blank" id="yit"></a>
<a href="http://www.yit.co.il/" target="_blank" id="calcalist"></a>
<a href="https://events.eventact.com/runreg/event/regform.aspx?event=4243&company=204&form=1617&account=0&lang=he&login=562974333928" target="_blank" id="register"><img src="sign.gif" alt="register" /></a>
CSS:
.wpr
{
background: url('bg_page.gif') no-repeat 0 0 ;
width: 980px; height: 643px; margin: 0 auto; position: relative;
}
#leumi{ position: absolute; top: 181px; right:96px ; width: 102px; height: 30px; }
#oren{ position: absolute; top: 176px; right:227px ; width: 139px; height: 43px; }
#energy{ position: absolute; top: 176px; right:380px ; width: 139px; height: 43px;}
#leon{ position: absolute; top: 510px; right:812px ; width: 139px; height: 43px; }
#calcalist{ position: absolute; top: 584px; right:841px ; width: 139px; height: 43px;}
#yit{ position: absolute; top: 579px; right:0px ; width: 139px; height: 43px; }
#register{ position: absolute; top: 444px; right:808px ; width: 139px; height: 43px; }