html - Full page overlay on Windows Phone 7+ -


after several searches can't find solution position overlay on top of page works on latest windows phones. works modern browsers, not windows phones.

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


Comments

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -