-3

I am design a page in css which should have a specific width in IE and Another width for all other browser. Is theor any way to achive this. Does @support works on IE

Yelstin Zeba
  • 17
  • 2
  • 5
  • I think this topic is already answered [here](https://stackoverflow.com/questions/14227531/different-css-for-each-browser) – konkasidiaris Dec 27 '18 at 08:56

1 Answers1

0
<!--[if IE]>
<style>
    ////apply your styling
</style>
<![endif]-->

This conditional statement works, but it is very messay and you have to consider all versions which you have to target.

ellipsis
  • 12,049
  • 2
  • 17
  • 33