首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 服务器 > IIS >

CSS DIV 定位有关问题

2012-04-02 
CSS DIV 定位问题bodycenterdiv stylewidth:1168px height:826px position:relative background

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你修改下

热点排行