I am facing an issue where I need to showcase a webpage in compatibility mode. Despite using the code below:
<meta http-equiv="X-UA-Compatible" content="IE=11">
It seems like this code only functions if compatibility mode is already enabled. In that scenario, the tag allows me to switch between different versions of Internet Explorer for displaying the document. However, when compatibility mode is turned off, the tag has no impact.
Is it possible for this to work even with compatibility mode turned off?
To give context: I am working on a website that appears flawless when accessed using IE10/11 with compatibility mode activated. Unfortunately, without compatibility mode, the site looks distorted. Removing compatibility mode entirely is not a viable solution. My goal is to enforce compatibility mode for all users who visit the site, eliminating the need for manual adjustment. Is this feasible?
Thank you for your assistance.