html – 应用Position:fixed时IE8的问题

前端之家收集整理的这篇文章主要介绍了html – 应用Position:fixed时IE8的问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是我的css代码
background-color: White;
border: 2px solid black;
padding: 10px;
position: fixed;
right: 5px;
top: 0;
width: 250px;

它在Chrome / Firefox / Safari中运行良好,但我无法在IE8中运行它. div框的位置不在右上角.关于如何解决这个问题的任何想法?

随着HTML

<div style="position:fixed;top:0;right:5px;background-color:White;padding:10px;border:2px black solid;width:250px;">
  <div>content here</div>
</div>

解决方法

尝试在标题上方的文档顶部添加此项.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/tr/xhtml1/DTD/xhtml1-transitional.dtd">
原文链接:https://www.f2er.com/html/231427.html

猜你在找的HTML相关文章