我正在开发Web应用程序,我需要将Microsoft Edge的浏览器与其他浏览器分开,以应用独特的样式。有没有办法通过使用CSS来识别Edge?
就像,
就像,
<!--[if IE 11]> Special instructions for IE 11 here <![endif]-->
解决方法
这应该工作:
@supports (-ms-ime-align:auto) { .selector { property: value; } }