android - css centering does not work in Phonegap -


i trying center image text underneath. works fine when display in chrome. works on emulator using opera mobile. when create phonegap app html/css files, image refuses center when run in android.

here css:

.centered {     width: 100%;     height: auto;     position: fixed;     top: 20%;     text-align:center; } 

any ideas?

thanks

could issue position: fixed;?

try eg.

.centered {     width: 100%;     height: auto;     position: absolute;     top: 20%;     right: 0px;     bottom: 20%;     left: 0px;     margin: auto;     text-align: center; } 

Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -