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?
feedback
|
|
Look at the custom CSS filters IE can handle http://msdn.microsoft.com/en-us/library/ms532847.aspx | |||||
feedback
|
|
The code I use for all browser gradients..
You will need to specify a height or Update: Here is a LESS Mixin (CSS) version for all you LESS users out there
| |||||||||||
feedback
|
|
This should work for IE6, IE7, and IE8:
| |||||
feedback
|
|
A significant gotcha when it comes to gradients in IE is that although you can use Microsoft's filters...
...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.
There are plenty of sites you can use to quickly generate a gradient background; I use this. | |||
|
feedback
|
|
Just thought I'd add this useful link: http://css3please.com/ Shows how to get gradients working in all browsers. | |||
|
feedback
|
|
Right from ScriptFX.com article:
| |||
|
feedback
|
|
Try this:
| ||||
|
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 | |||
|
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. | |||
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
| |||
|
feedback
|
|
I believe you're looking for this specific CSS setting. | |||
|
feedback
|
|
Two things I discovered while struggling with IE 9 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 ** | ||||
|
feedback
|