I am using transform: rotate(270deg); which works perfect on chrome but not on default browser of mobile. Any alternative of the same?
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);
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;}