internet-explorer-11

Support for ES6 in Internet Explorer 11

我与影子孤独终老i 提交于 2019-12-17 09:32:40
问题 According to this page http://kangax.github.io/compat-table/es6/, ES6 features are not implemented in IE 11. Does IE 11 have a plan for implementing them one day or can I forget about it? Is there a page that explain their intent on that subject? I read somewhere (I cannot remember where exactly) that they don't plan to fix bugs in IE 11, so my guess is that they won't bother implement new features? 回答1: The statement from Microsoft regarding the end of Internet Explorer 11 support mentions

font awesome icon is not appearing in IE 11, but showing in other browsers

别等时光非礼了梦想. 提交于 2019-12-17 09:31:16
问题 I am new to font-awesome icons. I have one page in which there is a filter where user can search the data. I have added font awesome icon just before the search link (as per below screenshot), I can see this icon in all the browsers except IE 11. The funny thing is I have this icon in other pages also and I can see it in IE 11, but I cannot see this icon on this (as per below screenshot) page only. Here is the screenshot from IE 11: Here is the screenshot from chrome: Can anyone help me out

How to detect IE 11 with javascript in Asp.net

自闭症网瘾萝莉.ら 提交于 2019-12-17 08:59:12
问题 Hello I want to detect the Browser , IE 8 or more will be appropriate for me. For this i used following code but it fails for IE 11 . For other its detecting properly. function getInternetExplorerVersion() { var rv = -1; // Return value assumes failure. if (navigator.appName == 'Microsoft Internet Explorer') { var ua = navigator.userAgent; var re = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})"); if (re.exec(ua) != null) rv = parseFloat(RegExp.$1); } return rv; } Below is the link which also I

How to make a sticky footer using flexbox in IE11?

拟墨画扇 提交于 2019-12-17 07:31:15
问题 I'm trying to make a simple design with flexbox but I'm having trouble with IE11. Basically, I want a footer that sticks to the bottom only if the content is not high enough. I have no issue doing that with Chrome like this: *, *:after, *:before { box-sizing: border-box; } html, body { height: 100%; margin: 0; padding: 0; } body { display: flex; flex-direction: column; } main { flex: 1; } <header> Header </header> <main> <p>Main</p> <p>Main</p> <p>Main</p> <p>Main</p> <p>Main</p> </main>

Flex auto margin not working in IE10/11

允我心安 提交于 2019-12-17 07:20:04
问题 I have a complex layout where I center various elements vertically and horizontally with flexbox. The last element then has margin-right:auto; applied to push the elements left (and negate centering them). This works correctly everywhere except on IE10/11 and has been driving me crazy. HTML/CSS sample: #container { display: -ms-flexbox; display: -webkit-flex; display: flex; -ms-flex-flow: row wrap; -webkit-flex-flow: row wrap; flex-flow: row wrap; -ms-flex-pack: center; -webkit-justify

Flex auto margin not working in IE10/11

允我心安 提交于 2019-12-17 07:19:38
问题 I have a complex layout where I center various elements vertically and horizontally with flexbox. The last element then has margin-right:auto; applied to push the elements left (and negate centering them). This works correctly everywhere except on IE10/11 and has been driving me crazy. HTML/CSS sample: #container { display: -ms-flexbox; display: -webkit-flex; display: flex; -ms-flex-flow: row wrap; -webkit-flex-flow: row wrap; flex-flow: row wrap; -ms-flex-pack: center; -webkit-justify

Flex auto margin not working in IE10/11

六眼飞鱼酱① 提交于 2019-12-17 07:19:38
问题 I have a complex layout where I center various elements vertically and horizontally with flexbox. The last element then has margin-right:auto; applied to push the elements left (and negate centering them). This works correctly everywhere except on IE10/11 and has been driving me crazy. HTML/CSS sample: #container { display: -ms-flexbox; display: -webkit-flex; display: flex; -ms-flex-flow: row wrap; -webkit-flex-flow: row wrap; flex-flow: row wrap; -ms-flex-pack: center; -webkit-justify

How to set IE11 Document mode to edge as default?

社会主义新天地 提交于 2019-12-17 06:31:47
问题 I have Internet Explorer installed on my computer but needed to test compatibility mode of IE 7. After changing the document mode to IE 7, it set it as default and now I can't change it. The default is stuck on IE 7? How do I set Document mode default? 回答1: The rendering mode in Internet Explorer 11 can appear stuck if the site is added to your local Compatibility View list. When this happens, the rendering mode inside the developer tools and out will default to the specified compatibility

How can I prevent the scrollbar overlaying content in IE10?

不羁的心 提交于 2019-12-17 06:21:15
问题 In IE10, the scrollbar is not always there... and when it appears it comes on as an overlay... It's a cool feature but I would like to turn it off for my specific website as it is a full screen application and my logos and menus are lost behind it. IE10: CHROME: Anyone know a way of always having the scrollbar fixed in position on IE10? overflow-y:scroll doesn't seem to work! it just puts it permanently over my website. It may be bootstrap causing the issue but which part I have no idea! see

How can I prevent the scrollbar overlaying content in IE10?

早过忘川 提交于 2019-12-17 06:21:09
问题 In IE10, the scrollbar is not always there... and when it appears it comes on as an overlay... It's a cool feature but I would like to turn it off for my specific website as it is a full screen application and my logos and menus are lost behind it. IE10: CHROME: Anyone know a way of always having the scrollbar fixed in position on IE10? overflow-y:scroll doesn't seem to work! it just puts it permanently over my website. It may be bootstrap causing the issue but which part I have no idea! see