Skip to content

Instantly share code, notes, and snippets.

@erikjung
Created June 28, 2012 20:13
Show Gist options
  • Save erikjung/3013635 to your computer and use it in GitHub Desktop.
Save erikjung/3013635 to your computer and use it in GitHub Desktop.
Webkit Elastic Overflow Scrolling
/**
* The first commented line is your dabblet’s title
*/
.container {
overflow-x:scroll;
overflow-y: hidden;
width: 500px;
height: 500px;
-webkit-overflow-scrolling: touch;
}
.container > div {
width: 2500px;
}
img {
float: left;
}
<!-- content to be placed inside <body>…</body> -->
<div class="container">
<div>
<img src="//placekitten.com/500/500">
<img src="//placekitten.com/500/500">
<img src="//placekitten.com/500/500">
<img src="//placekitten.com/500/500">
<img src="//placekitten.com/500/500">
</div>
</div>
{"view":"separate","fontsize":"80","seethrough":"","prefixfree":"1","page":"result"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment