Responsive hack for M. Edge

0

short question. This hack is for M. Edge

@supports (-ms-ime-align:auto) {
       div {
         display:inline-flex;
    }
}

How can I use this hack in responsive ?. So in @media this this hack for M. Edge as a display: inline-table

Thanks to tod qs

    
asked by Dario B. 06.12.2017 в 10:39
source

1 answer

1

Short answer:

Enter the declaration @support within @media :

@media (max-width: 600px) {

  @supports (-ms-ime-align:auto) {
    div {
      display: inline-table;
    }
  }
}
    
answered by 06.12.2017 в 14:25