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 CS
For Internet Explorer
@media all and (-ms-high-contrast: none) {
.banner-wrapper{
background: rgba(0, 0, 0, 0.16)
}
}
For Edge
@supports (-ms-ime-align:auto) {
.banner-wrapper{
background: rgba(0, 0, 0, 0.16);
}
}