Home >Web Front-end >CSS Tutorial >How Can I Open a Link in a Specific Browser (e.g., Microsoft Edge)?
Opening Links in a Specific Browser
Problem:
A website designed in Firefox requires a softphone that is built with ActiveX, a technology not supported by Firefox. The webpage appears distorted when opened in IE9 due to the use of CSS3.
Solution:
To force a link to open in a specific browser, such as Microsoft Edge, use the following approach:
Utilize the microsoft-edge: Prefix:
Prepend the URL in the HREF attribute with "microsoft-edge:" to open the link in Edge.
<a href="microsoft-edge:http://www.google.com">EDGE (works)</a>
Note:
This solution only works with Microsoft Edge. For other browsers, check the specific browser documentation for similar functionality.
The above is the detailed content of How Can I Open a Link in a Specific Browser (e.g., Microsoft Edge)?. For more information, please follow other related articles on the PHP Chinese website!