怎么样让层始终居中?
请教各位高手,怎么样让层一开始就举重居中,而且不论分辨率,浏览器大小,或滚动条的拉动层始终在浏览器中部,
我来试一下(只供参考,细节自己改):
[CODE]<script language="javascript">
function getcenter(){
var tt=document.getElementById("id1")
tt.style.top=(document.body.offsetHeight-100)/2
tt.style.left=(document.body.offsetWidth-150)/2
}
</script>
<body onload="getcenter()">
<div style="position:absolute;left:50;top:50;border:1 solid;width:150;height:100" id="id1">我就要居中!</div>
</body>[/CODE]
[此贴子已经被作者于2007-6-13 13:15:26编辑过]