I'm currently working on a project that uses a flex-basis transition on hover. It's smooth in Chrome and FF but not in IE or Safari. Is there a good fallback for this? maybe some js?
CSS
.color {
opacity:0;
-o-transition: flex-basis 500ms, opacity 500ms ease-in-out;
-ms-transition: flex-basis 500ms, opacity 500ms ease-in-out;
-moz-transition: flex-basis 500ms, opacity 500ms ease-in-out;
-webkit-transition: flex-basis 500ms, opacity 500ms ease-in-out;
transition: flex-basis 500ms, opacity 500ms ease-in-out;
}
.color:hover {
flex-basis: 95%;
opacity:1;
}
Thanks!