How to write different CSS for Microsoft Edge in Codepen?

Hello, everyone
I don’t know how to write CSS targeted only for Edge
I can do it for IE10 and 11 using @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { }
but it doesn’t work with Edge.
Any help would be appreciated

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

Ref: https://browserstrangeness.bitbucket.io/css_hacks.html?

That’s it, thanks for the info!