Search code examples
cssinternet-explorerstylesheet

How do I change the CSS style for background-attachment: for Internet Explorer Edge only


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.


Solution

  • See the answer here for targetting IE edge: https://stackoverflow.com/a/32202953.

    @supports (-ms-ime-align:auto) {
    .selector {
        property: value;
        }
    }