internet-explorer-11

IE11 Ignoring Inline CSS

走远了吗. 提交于 2020-01-06 02:25:15
问题 Site being developed here: http://new.brushman.com/about/ The CMS allows adding of in-line CSS on a page by page basis. This CSS is added to the page after all other .css files are loaded. IE11 is ignoring the style, even-though it works in 8, 9, 10, Edge, and all the rest (Chrome, Firefox, Safari, etc) The inline CSS is: <style> /* CMS Page about CSS */ main {background: #d70055;} </style> and is in the after all the css files are loaded The interesting thing is that inspect element shows

IE 11 Unable to get property 'length' of undefined or null reference

可紊 提交于 2020-01-06 01:45:34
问题 I am getting an error in internet explorer 11 "Unable to get property 'length' of undefined or null reference" on line if (window.localStorage.length !== 0) it works fine on chrome and Firefox, not sure whats causing it <script> function initialize() { // test to see if brouser supports storeage api var bSupportsLocal = (('localStorage' in window) && window.localStorage !== null ); if (!bSupportsLocal) { document.getElementById('infoform').innerHTML = "<p> Sorry, This browser does not suport

IE 11 Not displaying anything at all

徘徊边缘 提交于 2020-01-05 07:56:26
问题 The following code is working in all browser but EI11. There are no errors in the console or displayed anywhere. I have been on Stack Overflow for the last two day trying all of the other answered questions, anything from cache breaking, adding header option. At a lost here, any guidance would be grateful and i'll add any additional info ass needed. HTML <!DOCTYPE html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA

IE 11 Not displaying anything at all

血红的双手。 提交于 2020-01-05 07:56:01
问题 The following code is working in all browser but EI11. There are no errors in the console or displayed anywhere. I have been on Stack Overflow for the last two day trying all of the other answered questions, anything from cache breaking, adding header option. At a lost here, any guidance would be grateful and i'll add any additional info ass needed. HTML <!DOCTYPE html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA

CSS animation not working in Internet Explorer 10 and 11

≯℡__Kan透↙ 提交于 2020-01-05 03:04:32
问题 The following css animation works perfect in Chrome, Mozilla, Opera browsers but doesn't work in Internet Exporer 10 and 11. What's wrong? Please see http://jsfiddle.net/bm72w3n3/ .changed { -webkit-animation:target-fade 5s 1; -moz-animation:target-fade 5s 1; animation:target-fade 5s 1; } @-webkit-keyframes target-fade { 0% { text-shadow: 0 0 10px yellow; } 100% { -webkit-transition: text-shadow 0.2s linear; } } @-moz-keyframes target-fade { 0% { text-shadow: 0 0 10px yellow; } 100% { -moz

Why do HTML5 features like localStorage and sessionStorage work in IE7 Emulator mode in IE11?

点点圈 提交于 2020-01-04 06:28:26
问题 In Internet Explorer 11, I turn on IE7 Mode and test sessionStorage. I do sessionStorage.put("someObject",someObject); and then do if(sessionStorage != null) { console.log(sessionStorage.get("someObject")); } console.log(sessionStorage.get("someObject")); It actually prints the value of the object out. Why is this? 来源: https://stackoverflow.com/questions/28022370/why-do-html5-features-like-localstorage-and-sessionstorage-work-in-ie7-emulator

Css calc not working in IE11 with linear gradient

会有一股神秘感。 提交于 2020-01-04 05:47:07
问题 *{ margin:0; padding: 0; } body { background-color: orangered; } .content { margin-top: 200px; height: 100vh; background-color: #fdfdff; } .tilt { position: relative; } .tilt:before { content: ''; padding-top: 8.74887%; position: absolute; left: 0; right: 0; bottom: 100%; background-image: linear-gradient(5deg, #fdfdff calc(50% - 1px), transparent 50%); } <div class="content tilt"> </div> It seems that IE11 has some problems understanting calc() css property. I am using calc with linear

last-of-type doesn't work with custom elements in IE11 and Edge

早过忘川 提交于 2020-01-03 15:32:12
问题 .foo bar:last-of-type { background-color: red; } <div class="foo"> <bar>bar</bar> <bar>bar</bar> <bar>bar</bar> <span>span</span> </div> <div class="foo"> <bar>bar</bar> <bar>bar</bar> <bar>bar</bar> <baz>baz</baz> </div> The last bar appears red in both cases in Chrome and Firefox. In IE11 and Edge, however, it doesn't work in the second scenario. What's going on? 回答1: IE appears to be treating all unknown elements as being the same element type. If you remove the bar type selector, you'll

last-of-type doesn't work with custom elements in IE11 and Edge

我们两清 提交于 2020-01-03 15:31:12
问题 .foo bar:last-of-type { background-color: red; } <div class="foo"> <bar>bar</bar> <bar>bar</bar> <bar>bar</bar> <span>span</span> </div> <div class="foo"> <bar>bar</bar> <bar>bar</bar> <bar>bar</bar> <baz>baz</baz> </div> The last bar appears red in both cases in Chrome and Firefox. In IE11 and Edge, however, it doesn't work in the second scenario. What's going on? 回答1: IE appears to be treating all unknown elements as being the same element type. If you remove the bar type selector, you'll

Sending '@' special character with SendKeys to IE 11

坚强是说给别人听的谎言 提交于 2020-01-02 18:06:08
问题 I'm trying to send a special character to a textbox using the SendKeys method in Internet Explorer 11. I didn't have this problem while trying to send special characters in other browsers, but Internet Explorer is sending completely different characters when trying to send special characters. Most of the specials characters do work (e.g. !#()$%&/) but the characters like @{}§ are not working, and instead of those characters, something like vbnm is written in the textbox. These letters