日期:2014-05-17  浏览次数:20690 次

ie兼容
我想把div固定在窗口的某个位置  就在ie不能实现,其他都能实现
why!!!!!!
<a  style="position:fixed;right:25px;top:45px;" href="#">aaaaaaaaaaaaaaaaaaaa</a>

比如上面这个  里面上应该在窗口的右上角  但在ie下就是没效果

------解决方案--------------------
引用:
你看一下这个网页
http://seo.01m.cn/index.php/Test

你的页面 我这边 IE8 打开是 quirks 模式(怪异模式)了。
改成下面的试试:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
</head>
<body>
<a style="position:fixed;right:25px;top:45px;" href="#">aaaaaaaaaaaaaaaaaaaa</a>
</body>
</html>