CSS DIV 定位问题
<body>
<center>
<div style="width:1168px; height:826px; position:relative; background-image:url(bg.jpg)">
<a href="Index.asp"><img src="welcome.png" border="0" style="position:absolute; left: 745px; top: 91px;" onmouseover="this.src='welcome00.png'" onmouseout="this.src='welcome.png'"/></a></div>
</center>
</body>
图片bg.jpg作为div的背景图,div在body中居中显示。
在div中加入一个<img/>。要求<img/>相对div的位置固定。
在本机测试都没问题(多台机器,多个浏览器都没问题),但是传到服务器上就出问题了,<img/>的位置不是相对div的了?
为什么?
------解决方案--------------------
position:relative和position:absolute你修改下