How to Identify Microsoft Edge browser via CSS?

前端 未结 4 2058
春和景丽
春和景丽 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:50

    /* Microsoft Edge Browser 12-18 (All versions before Chromium) - one-liner method */
    
    _:-ms-lang(x), _:-webkit-full-screen, .selector { property:value; }
    

    That works great!

    // for instance:
    _:-ms-lang(x), _:-webkit-full-screen, .headerClass 
    { 
      border: 1px solid brown;
    }
    

    https://jeffclayton.wordpress.com/2015/04/07/css-hacks-for-windows-10-and-spartan-browser-preview/

提交回复
热议问题