Skip to main content
HTML Validation

X-UA-Compatible HTTP header must have the value “IE=edge”, was “IE=10”.

About This HTML Issue

The X-UA-Compatible meta tag or HTTP header value must be set to IE=edge instead of IE=10 for modern browser compatibility.

The X-UA-Compatible HTTP header or <meta http-equiv="X-UA-Compatible"> element instructs Internet Explorer which document mode to use. Setting it to IE=10 forces the page into IE10 rendering mode, which is outdated and may cause issues with modern web standards. The recommended value is IE=edge, which tells IE to use the highest supported mode available, ensuring the browser uses the latest standards.

Example of the correct <meta> tag for compliance:

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Correct X-UA-Compatible Example</title>
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
</head>
<body>
<!-- Page content -->

</body>
</html>

Remove any instance like IE=10 and replace with IE=edge to resolve the validator issue.

Find issues like this automatically

Rocket Validator scans thousands of pages in seconds, detecting HTML issues across your entire site.

Help us improve our guides

Was this guide helpful?

Ready to validate your sites?
Start your free trial today.