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

ie兼容解决办法

2013-03-16 
ie兼容我想把div固定在窗口的某个位置就在ie不能实现,其他都能实现why!!!!!!astyleposition:fixedrigh

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>

热点排行