I know that Internet Explorer has some proprietary extensions so that you can do things like create divs with a gradient background. I can't remember the element name or it's usage. Does anyone have some examples or links?

link|improve this question

65% accept rate
One little note: I found a little bug when working on IE9. If you don't spell out the entire HEX color it won't work correctly. i.e. #cccccc NOT #ccc Hope this helps. – mdostudio Oct 14 '11 at 17:02
feedback

12 Answers

up vote 14 down vote accepted

Look at the custom CSS filters IE can handle http://msdn.microsoft.com/en-us/library/ms532847.aspx

link|improve this answer
1  
That's it! thanks. – Jeremy Oct 17 '08 at 20:54
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


Update:

Here is a LESS Mixin (CSS) version for all you LESS users out there

.gradient(@start, @end) {
background: @start;
filter: ~"progid:DXImageTransform.Microsoft.gradient(startColorStr="@start~", EndColorStr="@end~")";
background: -webkit-gradient(linear, left top, left bottom, from(@start), to(@end));
background: -moz-linear-gradient(top, @start, @end);
background: -ms-linear-gradient(top, @start, @end);
background: -o-linear-gradient(top, @start, @end);
    zoom:1;
}
link|improve this answer
4  
That haslayout part was key. Thank you so much! – SapphireSun Feb 8 '11 at 19:26
Updated to include Opera 11.10 Sytnax – Blowsie Apr 7 '11 at 11:21
1  
Perfect snippet for gradients. zoom:1 is the key to answering this question though. – Voltin May 16 '11 at 18:16
feedback

This should work for IE6, IE7, and IE8:

.gradientClass
{
  filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#e6e6e6', endColorstr='#CCCCCC'); /* IE6 & IE7 */
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#e6e6e6', endColorstr='#CCCCCC')"; /* IE8 */
}
link|improve this answer
2  
This doesn't work – Webnet Feb 24 '11 at 20:57
feedback

A significant gotcha when it comes to gradients in IE is that although you can use Microsoft's filters...

filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FCCA6D', endColorstr='#FEFEFE');
zoom:1;

...they kill clear type on any text covered by the gradient. Given that the purpose of gradients is normally to make the UI look better, that's a show stopper for me.

So for IE I use a repeating background image instead. If the background image css is combined with the gradient CSS for other browsers (as per Blowsie's answer), other browsers will ignore the background image in favour of the gradient css, so it will only end up applying to IE.

background-image: url('/Content/Images/button-gradient.png');

There are plenty of sites you can use to quickly generate a gradient background; I use this.

link|improve this answer
feedback

Just thought I'd add this useful link: http://css3please.com/

Shows how to get gradients working in all browsers.

link|improve this answer
feedback

Right from ScriptFX.com article:

<body bgcolor="#000000" topmargin="0" leftmargin="0">

    <div style="width:100%;height:100%; filter: progid:
        DXImageTransform.Microsoft.Gradient (GradientType=1,
        StartColorStr='#FF006600', EndColorStr='#ff456789')">

Your page content goes in here ...... at the end of all the page content, you must close the <div> tag, immediately before the closing <body> tag.... as below

    </div>
</body>
link|improve this answer
feedback

Try this:

.red{
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e02a42', endColorstr='#a91903',GradientType=0 ); /* IE6-9 */
height:0; /*gain layout IE5+ */   
zoom:1; /*gain layout IE7+ */
}
link|improve this answer
feedback

just to let you know to add for IE10

IE10 will be supporting gradients its the same as mozilla with the -moz but with -ms

example below

IE10

background: -ms-linear-gradient(left top, #017AC1, #00bcdf);

hope you found this helpfull

link|improve this answer
feedback

Be careful of applying gradients to table rows. IE seems to treat those differently, so to get any of the other solutions to this question to work, you'll need to wrap your tr content in a div and apply the gradient to that.

link|improve this answer
Thanks for this, I thought I was going nuts. Alternatively, you can assign the background to your td if that works in your situation. – Matt Grande May 1 at 14:12
feedback

Greate tool from Microsoft, allows you to examine colors real-time and generates css for all browsers: http://ie.microsoft.com/testdrive/graphics/cssgradientbackgroundmaker/default.html

 /* IE10 */ 
 background-image: -ms-linear-gradient(top, #FFFFFF 0%, #B7B8BD 300%);

/* Mozilla Firefox */ 
background-image: -moz-linear-gradient(top, #FFFFFF 0%, #B7B8BD 300%);

/* Opera */ 
background-image: -o-linear-gradient(top, #FFFFFF 0%, #B7B8BD 300%);

/* Webkit (Safari/Chrome 10) */ 
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FFFFFF), color-stop(3, #B7B8BD));

/* Webkit (Chrome 11+) */ 
background-image: -webkit-linear-gradient(top, #FFFFFF 0%, #B7B8BD 300%);

/* Proposed W3C Markup */ 
background-image: linear-gradient(top, #FFFFFF 0%, #B7B8BD 300%);
link|improve this answer
feedback

I believe you're looking for this specific CSS setting.

link|improve this answer
feedback

Two things I discovered while struggling with IE 9 gradient.

  1. The "-ms-filter" did not work for me. I had to use simply "filter".
  2. I had to add "height:100%" to my class for IE to use the gradient.

All I can say is I don't know what those guys over at Microsoft are smoking. It shouldn't be this difficult that there are millions of posts scattered around the internet of developers trying to figure out how to make simple effects work in IE. ** heavy sigh **

link|improve this answer
you might want to check out CSS3Pie, which is a script for IE to add support for some CSS features including gradients. It works in IE9 as well. – Spudley May 7 at 5:27
feedback

Your Answer

 
or
required, but never shown

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