Windows Phone 7+上的整页覆盖

时间:2013-03-25 12:22:29

标签: html css html5 windows-phone-7 css3

经过多次搜索后,我找不到一个解决方案,可以在最新的Windows手机上运行的页面顶部放置叠加层。这适用于所有现代浏览器,但不适用于Windows手机。

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>

Demo

0 个答案:

没有答案