位置:固定在internet explorer中不起作用

2022-02-26 00:00:00 position css fixed

我就是不明白。

我为一个网站设置了三个简单的行。就这三个人:

<div style='height: 3000px; border: 10px dotted blue;'>
<div style='position: fixed; top: 100px; left: 100px; border: 2px dashed red; height: 100px; width: 100px;'></div>
</div>
现在谁能给我解释一下,为什么Internet Explorer中固定的内部div不能停留在原来的位置?在Firefox中完美工作.

感谢您的帮助!


解决方案

一般而言:如果Internet Explorer显示网页的方式有问题,可能只是它在quirks mode中。

这种情况经常发生,因为DTD (=doctype declaration)被遗忘了。

尝试添加DTD和适当的html页面结构,可能会解决您的问题。

虽然Internet Explorer是Microsoft产品,但如果您也遵守标准,Internet Explorer实际上也会遵守这些标准。

相关文章