IE
IE 快灭亡吧
解决IE状态列跳出 Internet Explorer已限制这个网页执行指令档,或ACTIVE 控制项 导致custom image 或 js 无法正确显示
在后加下行
<!-- saved from url=(0014)about:internet -->
IE 内 svg 图片问题
宽高皆要定义
如果使用 svg 于背景,最好换成 png
css hack for IE
IE 11 (and above..)
_:-ms-fullscreen, :root .foo { property:value; }
IE 10 and above (ie11 可读取)
_:-ms-lang(x), .foo { property:value; }
或 (但这样写,就不能写 ie 下的 media query )
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { .foo{property:value;} }
IE 10 only
_:-ms-lang(x), .foo { property:value\9; }
IE 9 and above
@media screen and (min-width:0\0) and (min-resolution: +72dpi) { //.foo CSS .foo{property:value;}}
IE 9 and 10
@media screen and (min-width:0\0) { .foo /* backslash-9 removes.foo & old Safari 4 */}
IE 9 only
@media screen and (min-width:0\0) and (min-resolution: .001dpcm) { //.foo CSS.foo{property:value;}}
IE 8,9 and 10
@media screen\0 { .foo {property:value;}}