Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<!-- -moz-scrollbar-inset-inline must reach the horizontal scrollbar. Compared
with != against an identical container that has no inset. -->
<style>
#outer {
overflow-x: scroll;
overflow-y: hidden;
width: 300px;
height: 100px;
background: white;
scrollbar-color: black white;
-moz-scrollbar-inset-inline: 40px 0;
}
#inner {
width: 900px;
height: 20px;
}
</style>
<div id="outer"><div id="inner"></div></div>