I would like to get a gradient in CSS (perhaps through Compass) that works in every major browser, including IE7+. Is there an easy way to do this (without writing a lot of code, and without a custom image file)?

I looked at Compass's gradient mixin, but it does not work with Internet Explorer.

Any ideas? (It does not need to be Compass -- I am happy install something else.)

Edit: What I am trying to get is some framework (like Compass?) that generates code like what Blowsie posted that's been tested across browsers. Basically like the Compass gradient mixin I mentioned, but with IE support. (I am a bit wary of just rolling my own SCSS mixin and pasting in blocks like Blowsie's code, because I haven't tested it and do not have the resources to do so.)

link|improve this question

feedback

3 Answers

up vote 9 down vote accepted

I just noticed that the current Compass beta (0.11.beta.6) has support for generating IE gradients in the compass/css3/images module (which supersedes the previous gradient module), so you can generate your gradients with a total of two short commands:

@import "compass/css3/images";
@import "compass/utilities/general/hacks";  /* filter-gradient needs this */

.whatever {
  /* IE; docs say this should go first (or better, placed in separate IE-only stylesheet): */
  @include filter-gradient(#aaaaaa, #eeeeee);
  /* Fallback: */
  background: #cccccc;
  /* CSS 3 plus vendor prefixes: */
  @include background(linear-gradient(top, #aaaaaa, #eeeeee));
}

This generates the following slew of CSS:

.whatever {
  *zoom: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFAAAAAA', endColorstr='#FFEEEEEE')";
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFAAAAAA', endColorstr='#FFEEEEEE');
  background: #cccccc;
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #aaaaaa), color-stop(100%, #eeeeee));
  background: -moz-linear-gradient(top, #aaaaaa, #eeeeee);
  background: -o-linear-gradient(top, #aaaaaa, #eeeeee);
  background: linear-gradient(top, #aaaaaa, #eeeeee);
}

I guess I would have preferred to have the IE and non-IE gradient code in one call, but since IE's DXImageTransform gradient function is pretty limited, that is probably not possible.

link|improve this answer
-What about IE9? – Jitendra Vyas Jan 19 at 15:39
1  
Update: Smart people say you shouldn't be making gradients on IE6-IE8, as they can cause performance and layout issues. So these days I'd perhaps omit the filter-gradient line. – Jo Liss May 3 at 18:25
-then what you do for IE gradient, images? – Jitendra Vyas May 4 at 6:08
Just a single-colored background (the "fallback" line above). – Jo Liss May 4 at 11:22
feedback

The code I use for all browser gradients..

            background: #0A284B;
            background: -webkit-gradient(linear, left top, left bottom, from(#0A284B), to(#135887));
            background: -moz-linear-gradient(top, #0A284B, #135887);
            background: -o-linear-gradient(#0A284B, #135887);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0A284B', endColorstr='#135887');
            zoom:1;

You will need to specify a height or zoom:1 to apply hasLayout to the element for this to work in ie

link|improve this answer
feedback

While gradients are of limited complexity, they're complex enough to require what you would consider "lots of code".

Consider:

  • starting colour, ending colour and the hexadecimal math required to transition between one and the other
  • The number of "steps"
  • The width/height of each step
  • Since there is no pure CSS way of doing this, it means rendering HTML, one element for each colour/step, without messing up your existing HTML

So, no, without a plug-in that does all of this for you, it would require a bit of code, or an image.

link|improve this answer
Actually, I don't think you have to have HTML code for this. See, for example, webdesignerwall.com/tutorials/cross-browser-css-gradient for a way to do it. (It's just way too verbose for my taste, so I'm looking for a way to do it programmatically with a CSS framework.) – Jo Liss Apr 14 '11 at 14:59
1  
The point that I'm trying to make is that there is no simple answer. You want one, but there isn't one. That doesn't make my answer worthy of a down-vote. – Diodeus Apr 14 '11 at 15:04
Fair enough, though "there is no pure CSS way of doing this" is just not correct (CSS 3 has gradient support) -- and recommending to generate HTML (or use JS) instead of writing extra CSS for those browsers that do not support it is questionable advice, in my opinion. – Jo Liss Apr 14 '11 at 16:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.