I'm looking for a mediaquery to target all browsers except for IE.
For example:
@media (........) {
}
Is there a way to do this?
I'm using sass-bootstrap, so maybe there's a option in there.
Thanks!
Here's the code that doesn't work in IE:
.animations {
.legend {
stroke-dasharray: 1000;
stroke-dashoffset: 1000;
animation: internetmarketing 3s linear forwards;
}
.line {
stroke-dasharray: 1000;
stroke-dashoffset: 1000;
animation: internetmarketing 3s linear forwards;
animation-delay: 2s;
}
}
@keyframes internetmarketing {
to {
stroke-dashoffset: 0;
}
}