任何人都知道什么位置:-ms-page;在 IE 中呢?

Anyone know what position: -ms-page; does in IE?

有谁知道

position: -ms-page

是吗?

到目前为止我还没有找到关于它的任何文档,但是它以某种方式解决了我在添加相对位置时遇到的 IE 特定 z-index 问题。即

position: relative;
position: -ms-page;

通过循环浏览 IE11 开发工具中的可能位置找到它。

来自documentation

Internet Explorer 10. Object is positioned relative to the nearest initial containing block. This may be the viewport or a content container such as an iframe. The positioning properties are used to position the element relative to the boundaries of the viewport area. For more information, see Section 6.4 "Page positioning" of the "W3C CSS Positioned Layout Module Level 3" specification.

"-ms-page" 等价于 "page".