iframe in Internet Explorer (latest version) is not able to download my css, while Chrome, Safari, Firefox does not have any difficulty in this.

My style files are connected to the iframe page using the following HTML code:

<link type="text/css" rel="stylesheet" href="/webapp/load-css/BNP/default/css/default.css?loc=1" /> <link type="text/css" rel="stylesheet" href="/webapp/load-css/css/default.css?loc=4" /> 

Here is the full HTML header inside the iframe:

 <!DOCTYPE html> <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="flexNav-no-touch"> <head> <meta name="copyright" content="Atos" /> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta http-equiv="content-script-type" content="text/javascript" /> <meta http-equiv="expires" content="0" /> <meta http-equiv="pragma" content="no-cache" /> <meta http-equiv="cache-control" content="no-cache, must-revalidate" /> <meta name="format-detection" content="telephone=no" /> <meta name="format-detection" content="email=no" /> <meta name="viewport" content="initial-scale=1.0; user-scalable=1;" /> <title>Capture card details page</title> <link type="text/css" rel="stylesheet" href="/webapp/load-css/BNP/default/css/default.css?loc=1" /> <link type="text/css" rel="stylesheet" href="/webapp/load-css/css/default.css?loc=4" /> 
  • Is the latest version of IE EDGE? - user33274

0