Created
May 30, 2015 02:27
-
-
Save mattisbusycom/26d92ca601681945c558 to your computer and use it in GitHub Desktop.
nice super super simple clean gradient div
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
<div class="gradient"> | |
</div> | |
<style> | |
div { | |
height: 60px; | |
background-color: red; | |
background-image: | |
linear-gradient( | |
#ccc, #eee | |
); | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment