0

经过多次搜索,我找不到在最新 Windows Phone 上工作的页面顶部放置叠加层的解决方案。这适用于所有现代浏览器,但不适用于 Windows Phone。

CSS

html, body
{
    height: 100%;
}
div.overlay
{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: gray;
}

HTML

<html>
    <body>
        <div class="overlay">Centered?</div>
    </body>
</html>

演示

4

0 回答 0