-1

How to write css only mozilla and IE? Targeting firefox and IE only with CSS. anyone help me please

user1
  • 197
  • 8
  • 1
    Possible duplicate of [How to write specific CSS for mozilla, chrome and IE](https://stackoverflow.com/questions/4332117/how-to-write-specific-css-for-mozilla-chrome-and-ie) – JustCarty Nov 02 '17 at 12:42

1 Answers1

1

Use below i think will help you

/*IE*/
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {

    }

     /*Mozilla*/
    @-moz-document url-prefix() {

    }  
Pankaj Upadhyay
  • 2,114
  • 21
  • 22