-
-
Save gastonambrogi/9b513e2ecb11444019b1af2aa852fdb1 to your computer and use it in GitHub Desktop.
Pure CSS horizontal scrolling shadows
This file contains 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> | |
<style> | |
.scrollbox { | |
overflow: auto; | |
width: 200px; | |
max-height: 200px; | |
margin: 50px auto; | |
background: | |
linear-gradient(90deg, white 0%, rgba(255,255,255,0)), | |
linear-gradient(-90deg, white 0%, rgba(255,255,255,0)) 100% 0, | |
radial-gradient( | |
farthest-side at 0% 50%, | |
rgba(0,0,0,.2), | |
rgba(0,0,0,0) | |
), | |
radial-gradient( | |
farthest-side at 100% 50%, | |
rgba(0,0,0,.2), | |
rgba(0,0,0,0) | |
) 100% 0%; | |
background-repeat: no-repeat; | |
background-color: #fff; | |
background-size: 100px 137px, 100px 137px, 14px 137px, 14px 137px; | |
background-attachment: local, local, scroll, scroll; | |
} | |
.scrollbox ul { width: 1000px; } | |
</style> | |
</head> | |
<body> | |
<div class="scrollbox"> | |
<ul> | |
<li>Not enough content to scroll</li> | |
<li>2</li> | |
<li>3</li> | |
<li>4</li> | |
<li>5</li> | |
</ul> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment