如何更改背景附件的CSS样式:仅适用于Internet Explorer Edge

时间:2017-03-09 00:53:46

标签: css internet-explorer stylesheet

我的样式表目前使用固定的背景图像,除IE之外的所有浏览器都能很好地运行。如何仅在Internet Explorer Edge中禁用固定背景?更具体,更好,因为我不知道@supports如何工作。

1 个答案:

答案 0 :(得分:2)

请参阅此处的答案,了解IE边缘:https://stackoverflow.com/a/32202953

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