IE 的 CSS 效果问题

标签 css internet-explorer

我有一个使用三种效果的菜单栏:

.transition{
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.rounded{
    -webkit-border-radius: 0px 10px 10px 0;
    -moz-border-radius: 0px 10px 10px 0;
    -ms-border-radius: 0px 10px 10px 0;
         border-radius: 0px 10px 10px 0;
}

.shadow{
        -webkit-box-shadow: 2px 2px 4px #888;
    -moz-box-shadow: 2px 2px 4px #888;
        -ms-box-shadow: 2px 2px 4px #888;
         box-shadow: 2px 2px 4px #888;
}

这些适用于 Chrome 和 FF,但不适用于 IE9。帮助?

最佳答案

IE9 不支持大多数 CSS3 功能。 See this link to see valid featuresthis link for Microsoft reference .

关于IE 的 CSS 效果问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9443149/

相关文章:

css - 在 Squarespace 中访问 tweek.less 值

html - 如何对齐表格

CSS:为什么删除边框会严重影响 div 容器的位置?

javascript - [function].apply() 在 IE 中导致 "JScript object expected"错误

由正则表达式引起的 Javascript 语法错误 - 特定于 Internet Explorer(所有版本)

internet-explorer - 请求头不在 Access-Control-Allow-Headers 列表中

html - 使用 Cordova 格式化 iOS

javascript - 在 IE7 中设置动态生成元素的不透明度

html - 具有绝对定位的 Div 未占据 TD 的全高(IE 问题)

javascript - IE 仅在按 F12 后运行 JavaScript