How to Identify Microsoft Edge browser via CSS?

前端 未结 4 2062
春和景丽
春和景丽 2020-11-27 13:09

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

4条回答
  •  孤独总比滥情好
    2020-11-27 13:44

    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);
             }
    }
    

提交回复
热议问题