I have a css rule that works fine in chrome, firefox and used to work in IE. Now my seemingly valid css is not working.
.s-tour {
/*border-radius: 5px;*/
mar
Using 180deg
instead of top
solved the same problem for me.
Previously tried filter
and already had <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
So the problem I really had was that I was not telling IE to render the page using the latest standards of css.
Adding <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
to the <head>
block fixed most of my problems.
try adding this line to the end of your class:
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#555555, endColorstr=#666666);
What has worked for me in IE11 is to correctly use the CSS3 linear-gradient property (http://www.w3schools.com/css/css3_gradients.asp)
An example:
background: linear-gradient(to bottom, #FFF 0%, #EEE 100%);
After that I didn't need to use any meta tags or old filter syntax.