top button
Flag Notify
Site Registration

rotation of css is not working in default browser of mobile?

+2 votes
251 views

I am using transform: rotate(270deg); which works perfect on chrome but not on default browser of mobile. Any alternative of the same?

posted Jan 19, 2016 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

You may need to provide something like following to cover all types of browser -

-webkit-transform: rotate(270deg);
-moz-transform: rotate(270deg);
-o-transform: rotate(270deg);
-ms-transform: rotate(270deg);
transform: rotate(270deg);
answer Jan 19, 2016 by Salil Agrawal
Similar Questions
+1 vote

I tried the following code.But its not working.

html {scrollbar-face-color:#D6D7D6 ;
scrollbar-shadow-color: #FFFFFF;
scrollbar-highlight-color:#EFEFEF;
scrollbar-3dlight-color: #FFFFFF;

scrollbar-track-color: #FFFFFF;
scrollbar-arrow-color:  #000000;}
...