-
-
Save GitHub30/5b9ce3d67b3e94eec4dff2f5eeeec16b to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/zeyayoxemu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
.viewport { | |
width: 160px; | |
overflow-x: hidden; | |
} | |
/* Scrollbar width suppose about 20px. */ | |
.schedule { | |
width: 180px; | |
height: 90px; | |
overflow-y: auto; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="viewport"> | |
<div class="schedule"> | |
<p>Lorem.</p> | |
<p>Impedit.</p> | |
<p>Dolorum.</p> | |
<p>Nobis.</p> | |
<p>Doloremque.</p> | |
<p>Harum.</p> | |
<p>Neque.</p> | |
<p>Architecto?</p> | |
<p>Quasi.</p> | |
<p>Nobis!</p> | |
</div> | |
</div> | |
<script id="jsbin-source-css" type="text/css">.viewport { | |
width: 160px; | |
overflow-x: hidden; | |
} | |
/* Scrollbar width suppose about 20px. */ | |
.schedule { | |
width: 180px; | |
height: 90px; | |
overflow-y: auto; | |
} | |
</script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.viewport { | |
width: 160px; | |
overflow-x: hidden; | |
} | |
/* Scrollbar width suppose about 20px. */ | |
.schedule { | |
width: 180px; | |
height: 90px; | |
overflow-y: auto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment