Target IE9 Only via CSS

后端 未结 5 1705
自闭症患者
自闭症患者 2020-11-27 15:24

Just wondering given these IE hacks in my bag of tricks

\"\\9\" - for IE8 and below.
\"*\" - for IE7 and below.
\"_\" - for IE6.

i.e. such

5条回答
  •  执笔经年
    2020-11-27 15:51

    At this adress : http://www.impressivewebs.com/ie10-css-hacks/ I found a media query specific for IE10 only (and below) :

    @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  
       /* IE10-specific styles go here */  
    }
    

提交回复
热议问题