Last active
November 22, 2017 20:36
-
-
Save drFabio/0a11095bc47b189b79cc9bcdb568614b to your computer and use it in GitHub Desktop.
Exemplo vendor prefixes
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
#wrapper { | |
background-color: #7db9e8; | |
background: -moz-linear-gradient(top, #7db9e8 0%, #2989d8 12%, #0f0f0f 100%); | |
background: -webkit-linear-gradient(top, #7db9e8 0%,#2989d8 12%,#0f0f0f 100%); | |
background: linear-gradient(to bottom, #7db9e8 0%,#2989d8 12%,#0f0f0f 100%); | |
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7db9e8', endColorstr='#0f0f0f',GradientType=0 ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment