Created
December 29, 2015 09:20
-
-
Save MkShaman/cbbfd0ea60d9734e00a3 to your computer and use it in GitHub Desktop.
CSS Gradient for html elements
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
| background: #D3A600; | |
| background: -moz-linear-gradient(top, #D3A600 0%, #F7C200 100%); | |
| background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#D3A600), color-stop(100%,#F7C200)); | |
| background: -webkit-linear-gradient(top, #D3A600 0%,#F7C200 100%); | |
| background: -o-linear-gradient(top, #D3A600 0%,#F7C200 100%); | |
| background: -ms-linear-gradient(top, #D3A600 0%,#F7C200 100%); | |
| background: linear-gradient(to bottom, #D3A600 0%,#F7C200 100%); | |
| filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#D3A600', endColorstr='#F7C200',GradientType=0 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment