Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chancecorbeil/ee62ebf7f19548d381faf4b19abf8f76 to your computer and use it in GitHub Desktop.
Save chancecorbeil/ee62ebf7f19548d381faf4b19abf8f76 to your computer and use it in GitHub Desktop.
// Add horizontal scrollbar on top of block
.block-container,
.block {
transform:rotateX(180deg);
-ms-transform:rotateX(180deg); /* IE 9 */
-webkit-transform:rotateX(180deg); /* Safari and Chrome */
overflow-x: auto;
}
::-webkit-scrollbar:horizontal {
background: #ededed;
}
::-webkit-scrollbar:vertical {
background: #ffffff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment