This website uses cookies to improve your experience while you navigate through the website. Out of these cookies, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may have an effect on your browsing experience.
Always Enabled
We use necessary cookies to ensure our website works properly and provide essential functionalities and security features. These cookies do not collect any personal information and are always enabled. By continuing to use our website, you agree to our use of these cookies.
V:1 - 2024-09-13 07:45:43am
To enhance user experience, we use performance and analytical cookies to understand and analyze the key performance indexes of our website. Performance cookies help us deliver better user experiences by tracking metrics such as load times and response times. Analytical cookies help us understand how visitors interact with our website by providing information on metrics like the number of visitors, bounce rate, traffic source, and more.
V:1 - 2024-09-13 07:45:43am
You may be aware that Internet Explorer 10 and newer no longer uses conditional comments. Why is this an issue?
In the past, due to the inability to display web pages in a normal way, it has always been necessary to create a stylesheet which applied to Internet Explorer only. The way this would be loaded is by a conditional comment. The comment would look like the following:
<!–[if IE]>
Special instructions for IE here, such as load an IE specific stylesheet
<![endif]–>
However, IE10 and IE11 no longer support this. Although they are a LOT better in rendering, you may still need to add some Internet Explorer specific styles.
We did a fair bit of research on this, and found the easiest way by far is the following. Simply add this in your CSS stylesheet:
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
Add your IE10+ specific styles here
}
And it’s as simple as that!