Apply style ONLY on IE

后端 未结 12 2168
迷失自我
迷失自我 2020-11-28 01:14

Here is my block of CSS:

.actual-form table {
  padding: 5px 0 15px 15px;
  margin: 0 0 30px 0;
  display: block;
  width: 100%;
  background: #f9f9f9;
  bor         


        
12条回答
  •  执笔经年
    2020-11-28 01:26

    For IE9+

    @media screen and (min-width:0\0) and (min-resolution: +72dpi) {
       // IE9+ CSS
       .selector{
          color: red;
       }
    }
    

    IE Edge 12+

    @supports (-ms-ime-align: auto) {
      .selector {
        color: red;
      }
    }
    

    This one works on Edge and all IEs

    :-ms-lang(x), .selector { color: red; }
    

提交回复
热议问题