vote up 5 vote down star

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?

flag

73% accept rate

5 Answers

vote up 3 vote down check

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

link|flag
That's it! thanks. – Jeremy Oct 17 '08 at 20:54
vote up 0 vote down

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|flag
vote up 0 vote down

filter: progid:DXImageTransform.Microsoft.Gradient( gradientType=0,startColorStr=#d8cde9, endColorStr=#8f7eac);

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

Is this what you are looking for? IE Gradients

link|flag
Dead link! – Dimitri C. Sep 11 at 13:14

Your Answer

Get an OpenID
or

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