Simulating color stops in gradients for IE

2019-02-16 17:05发布

问题:

I want to give a div a gradient with multiple color-stops, which IE's filter property does not support. Anyone have a creative workaround to simulate the color stops in IE? I already thought of creating multiple divs right next to each other... anything else?

Thanks!

回答1:

Multiple divs with coordinated gradient colors is the best way (short of using images) to create 3+ color gradients. See fiddle below for a working test:

http://jsfiddle.net/Hauhx/



回答2:

I'd recommend you to use a background image as a fallback for browsers (as Opera and IE) that don't support CSS gradients.



回答3:

Or use CSS3 PIE. Way easy.

From Setting linear gradient's starting and ending position in MSIE 9 and older

div {
    background-image: -moz-linear-gradient(360deg,rgb(255,255,255) 25% ,rgb(241,123,25) 75%);

    -pie-background: linear-gradient(360deg,rgb(255,255,255) 25% ,rgb(241,123,25) 75%);
behavior: url(/PIE.htc);
}

Update: if the div has a top margin then it seems to do away with it. At least in my case. Don't know if it's a combination of two things.