How to Identify Microsoft Edge browser via CSS?

Sameera Liyanage picture Sameera Liyanage · Aug 25, 2015 · Viewed 117k times · Source

I'm developing web application and I need to identify Microsoft Edge's browser separately from others, to apply unique styling. Is there a way to identify Edge by using CSS? Just like,

<!--[if IE 11]>
Special instructions for IE 11 here
<![endif]-->

Answer

KittMedia picture KittMedia · Aug 25, 2015

/* Microsoft Edge Browser 12-18 (All versions before Chromium) */

This one should work:

@supports (-ms-ime-align:auto) {
    .selector {
        property: value;
    }
}

For more see: Browser Strangeness