Skip to content

Instantly share code, notes, and snippets.

@a-ignatov-parc
Created March 27, 2013 06:55
Show Gist options
  • Save a-ignatov-parc/5252292 to your computer and use it in GitHub Desktop.
Save a-ignatov-parc/5252292 to your computer and use it in GitHub Desktop.
ul {
position: relative;
width: 230px;
height: 480px;
margin: 0;
padding: 0;
overflow-x: hidden;
overflow-y: scroll;
list-style: none;
-webkit-perspective: 400px;
-moz-perspective: 400px;
-ms-perspective: 400px;
-o-perspective: 400px;
perspective: 400px;
}
ul li {
position: relative;
padding: 16px;
background: #eee;
color: #252525;
font-size: 18px;
z-index: 2;
-webkit-transform: translateZ(0px);
-moz-transform: translateZ(0px);
-ms-transform: translateZ(0px);
-o-transform: translateZ(0px);
transform: translateZ(0px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment