1080
-
beatmobile last edited by
Hi, i have app in resolution 1920x1080 in html5.
In others plataforms for minor resolution I changed size in css body el scale example
-moz-transform: scale(66.666%);
-moz-transform-origin: top left;
-o-transform: scale(66.666%);
-o-transform-origin: top left;
-webkit-transform: scale(66.666%);
-webkit-transform-origin: top left;
and works fine.
but in opera tv doesnt work??
Please, sos -
cgepfert last edited by
"CSS pixel" is different thing than "screen pixel". Did you set body width to 100%?
If you use transform 0.66, you manipulate with "CSS pixel width", so you should also set css properties of body/html: width:1920px;height:1080px to scale it to proper device dimensions.Could you try this and then submit your app again?