Skip to content

Instantly share code, notes, and snippets.

@mattisbusycom
Created May 30, 2015 02:27
Show Gist options
  • Save mattisbusycom/26d92ca601681945c558 to your computer and use it in GitHub Desktop.
Save mattisbusycom/26d92ca601681945c558 to your computer and use it in GitHub Desktop.
nice super super simple clean gradient div
<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