Monday, May 13, 2024
 Popular · Latest · Hot · Upcoming
36
rated 0 times [  42] [ 6]  / answers: 1 / hits: 16570  / 10 Years ago, fri, april 18, 2014, 12:00:00

I am using visual studio 2012



I have this simple html page, not asp.net page:



<!DOCTYPE html>
<html xmlns=http://www.w3.org/1999/xhtml>
<head>
<title>Test Float</title>
<link rel=stylesheet href=Styles/style.css />
</head>
<body>
<div class=header></div>
<div class=slideBar></div>
<div class=content></div>
<div class=footer></div>
</body>
</html>


I run it on google chrome. it works good.



when I debug it on internet explorer. I got this error:



enter



Edit



For those who think that the sytle sheet is the problem. here is my style sheet



html, body {
margin:0px;
height:100%;
}
.header {
width:100%;
height:20%;
background-color:red;
}
.footer {
width:100%;
height:20%;
background-color:green;
}
.slideBar {
width:20%;
height:60%;
float:right;
background-color:blue;
}
.content {
width:80%;
height:60%;
background-color:yellow;
}


It is working very good on google chrome and mozilla. the code is very very simple. just that IE11 is not



Edit2



After I added my html page link to the compatibility mode. I got this exception:



enter


More From » html

 Answers
33

Your browser is apparently running an add-on that injects scripts into loaded pages, and these scripts cause problems with IE11 (and 10).



You can configure Visual Studio to run IE in safe mode by adding an iexplore -extoff entry to the Browse With list and setting it as default, as explained here.



That said, I would recommend investigating which add-on is responsible for this situation, as it may have other adverse effects to your web usage (and to your privacy), and you may want to remove it if at all possible.


[#71401] Wednesday, April 16, 2014, 10 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
cristopherh

Total Points: 402
Total Questions: 117
Total Answers: 84

Location: Monaco
Member since Fri, Sep 24, 2021
3 Years ago
;