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

php - Extract Text from HTTP referer -

java - Callback from new thread to class from which thread was initiated -

Receive udp packets in android gstreamer -