My stylesheet currently uses a fixed background image which works great in all browsers except IE. How do I disable the fixed background ONLY in Internet Explorer Edge? The more specific, the better as I have no idea how the @supports work.
See the answer here for targetting IE edge: https://stackoverflow.com/a/32202953.
@supports (-ms-ime-align:auto) {
.selector {
property: value;
}
}