Skip to main content

All Questions

2 votes
1 answer
1k views

Internet Explorer not recognizing CSS for SVG elements

I have an SVG image map with hover styles on the links. (More on SVG image maps here.) All respectable browsers I've tested on are displaying it correctly. IE is not having any of it (surprise!)... ...
Mentalist's user avatar
  • 1,657
0 votes
1 answer
39 views

IE11 message bar flies up from bottom instead of easing in from top

I have a message bar that is hidden unless the server responds with a message to render something (e.g. "The password and username are invalid."). Then it eases in from the top to display the message. ...
cheslijones's user avatar
  • 9,026
1 vote
1 answer
229 views

How to translate or transition dynamically without using calc() css

I need to transform or transition dynamically without using calc(). Previously, i had used left: calc(100% - 10px) with transition: .05s the transition is not working properly in IE11. So, i need to ...
Shanmugaraja_K's user avatar
1 vote
1 answer
5k views

CSS Transition not working in IE 11

There is a similar question already here: Css transition not working The problem is different. I do not use calc() anywhere, neither on the "broken" element nor any related to it. I have a menu, for ...
Patric Hartmann's user avatar
1 vote
1 answer
533 views

Transition Height with Calc() in IE10/11

before we start I want to say I have looked at Using calc() to transition width and height in IE but my issue is to do with the Accepted answer to this question. Now the accepted answer definitely ...
Conor Watson's user avatar
1 vote
3 answers
6k views

Css transition not working

I have a scenario where on button click transition should happen. These are the transitions which were applied. In chrome browser it is working good, but in IE11 when tried the transitions aren't ...
Shikha thakur's user avatar
2 votes
1 answer
816 views

Nested CSS3 rotation animation not working in IE11

I'm stuck. I'm trying to get a nested rotation animation working on IE11, but nothing that I've tried has worked on my site. I've spent many hours trying the different fixes listed on Stack Overflow ...
B2K's user avatar
  • 2,581
2 votes
2 answers
2k views

IE11 ignores overflow:hidden during css transform

http://codepen.io/anon/pen/dpyLOE - when carousel moves, previous and next slides are visible. $(".owl-carousel").owlCarousel({ loop: true, autoplay: true, items: 1, nav: true, ...
Julia's user avatar
  • 1,321
1 vote
2 answers
504 views

How do I run some javascript after a CSS transition on a pseudo element in MS Edge?

I'm having trouble handling the "transitionend" event in Microsoft Edge, on a pseudo element. It works in other browsers like chrome, safari, and firefox. I thought it may have been a bug with MS ...
JeremyTM's user avatar
  • 603
9 votes
4 answers
18k views

Fixed position misbehaviour in IE11

I am experiencing elements position misbehaviour into my page, in IE(11) only; live link here. The logotext, the menu and the left sidebar text, remain in place doesn't move with the wrapper when the ...
typo_'s user avatar
  • 11
2 votes
0 answers
2k views

CSS3 image scale transition issue in IE11

This code works fine in Chrome/Firefox/Safari/Opera on Mac OS X (http://jsfiddle.net/hfmhecmw/3/): <div class="container"> <img class="image" src="http://s29.postimg.org/fu0492g7r/...
sergdenisov's user avatar
  • 8,512
1 vote
2 answers
14k views

CSS3 transition in IE11 doesn't work

Why this doesn't work only on IE11? In FF and Chrome it is fine .js-search-item { width: 30px; padding: 0px; margin: 0px; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0....
axlpl's user avatar
  • 483
12 votes
3 answers
4k views

IE11 triggers css transition on page load when non-applied media query exists

I have a situation which only occurs on IE11. Chrome, Firefox, Safari (tablet and phone) all work as expected. I have created a transition for a panel(DIV) that slides in/out from the side. On ...
user3546826's user avatar
8 votes
2 answers
2k views

Transition not animating in IE9-11 when using calc

I'm trying to get IE10 to animate a change in width of an element so that it pushes another panel out of the way. I have a JSBin demonstrating the basic idea. On Chrome, it animates just fine when you ...
Turner Hayes's user avatar
  • 1,904