Last active
September 8, 2015 11:51
-
-
Save dhunmoon/128c9021c5d44ff270ff to your computer and use it in GitHub Desktop.
CSS: Linear Gradient Horozontal LR
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
/* IE9 SVG, needs conditional override of 'filter' to 'none' */ | |
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4yIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=); | |
background: -moz-linear-gradient(left, rgba(249,249,249,1) 0%, rgba(0,0,0,0.2) 100%); /* FF3.6+ */ | |
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(249,249,249,1)), color-stop(100%,rgba(0,0,0,0.2))); /* Chrome,Safari4+ */ | |
background: -webkit-linear-gradient(left, rgba(249,249,249,1) 0%,rgba(0,0,0,0.2) 100%); /* Chrome10+,Safari5.1+ */ | |
background: -o-linear-gradient(left, rgba(249,249,249,1) 0%,rgba(0,0,0,0.2) 100%); /* Opera 11.10+ */ | |
background: -ms-linear-gradient(left, rgba(249,249,249,1) 0%,rgba(0,0,0,0.2) 100%); /* IE10+ */ | |
background: linear-gradient(to right, rgba(249,249,249,1) 0%,rgba(0,0,0,0.2) 100%); /* W3C */ | |
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#33000000',GradientType=1 ); /* IE6-8 */ | |
/* | |
Link To generate MOre: http://www.colorzilla.com/gradient-editor/ | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment