-1

So please tell me any trick or IE hack. Here is a simple example in my codepen that contains the same issues.

http://codepen.io/ektad/pen/vyQaLm

Eugene Lisitsky
  • 12,113
  • 5
  • 38
  • 59
ekta
  • 9
  • 4
  • 1
    Welcome to Stack Overflow! Questions seeking debugging help must include the shortest code necessary to reproduce it **in the question itself.** NB - **Please don't abuse the code blocks to get around this requirement**. – Paulie_D Dec 15 '16 at 15:52
  • http://stackoverflow.com/questions/10924632/how-do-i-get-my-css-linear-gradient-to-work-in-ie – pol Dec 15 '16 at 15:55
  • Possible duplicate of [How to make background-image with linear-gradient work on IE 11?](http://stackoverflow.com/questions/19980079/how-to-make-background-image-with-linear-gradient-work-on-ie-11) – Krease Dec 15 '16 at 18:10
  • Title shortened – Eugene Lisitsky Dec 18 '16 at 11:03

1 Answers1

0

Possible Dupe of SO

Prior to IE 11,

filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');

For IE 11:

background-image: -ms-linear-gradient(top, #FFFFFF 0%, #CCCCCC 100%);

That's right folks, we not only have to worry about supporting older IEs, apparently we'll now have to deal with NEWER IE quirks as well...

Community
  • 1
  • 1
Matthew Bergwall
  • 340
  • 1
  • 12