iT邦幫忙

0

web隨手筆記-不斷更新

dc88 2019-02-12 12:34:302161 瀏覽
  • 分享至 

  • xImage
  •  

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;}
}  

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言