Last active
May 29, 2016 04:24
-
-
Save nishinoshake/33f8b414be57d2a70e2a to your computer and use it in GitHub Desktop.
CSSで上下に線形グラディエーションのマスク
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
.sample { | |
background-image: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, .8)), linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, .8)); | |
background-repeat: no-repeat, no-repeat; | |
background-position: center top, center bottom; | |
-webkit-background-size: 100% 100px; | |
background-size: 100% 100px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment