我想在我的网页上为 Chrome 和 Safari 使用单独的 CSS 表,而不是用于所有其他浏览器类型的 CSS 表。我以前在为 IE 执行此操作时使用了条件注释,例如:
<!--[if !IE]><link rel="stylesheet" type="text/css" href="style.css"><!--<![endif]-->
<!--[if IE]><link rel="stylesheet" type="text/css" href="style2.css"><![endif]-->
但我希望上述内容适用于 Chrome 和 Safari。这可能吗?