Skip to content

Instantly share code, notes, and snippets.

@Dremora
Created January 8, 2015 12:31
Show Gist options
  • Save Dremora/fd162c07be13e0e0f2fa to your computer and use it in GitHub Desktop.
Save Dremora/fd162c07be13e0e0f2fa to your computer and use it in GitHub Desktop.
Scrolling without scrollbar
<div class="a">
<div class="b">
<div class="c">
</div>
</div>
</div>
.a {
width: 100px;
height: 100px;
overflow-x: hidden;
overflow-y: auto;
}
.b {
width: 120px;
height: 100px;
overflow-y: scroll;
}
.c {
width: 98px;
height: 500px;
background: linear-gradient(to bottom, #f0b7a1,#752201);
border: 1px solid black;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment