Skip to content Skip to sidebar Skip to footer

Css Rotation Not Applied In Android 4.0 Webview

I am building an Android app with Phonegap. My screen's corners are darkened by an overlaying PNG image, Markup looks like:

Solution 1:

Try using all types of rotation just to be sure.

transform: rotate(45deg);
-ms-transform: rotate(45deg); /* IE 9 */
-webkit-transform: rotate(45deg); /* Safari and Chrome */
-o-transform: rotate(45deg); /* Opera */
-moz-transform: rotate(45deg); /* Firefox */

Post a Comment for "Css Rotation Not Applied In Android 4.0 Webview"