This is actually a very useful initiative by Microsoft. Tools like Modern.ie make it much easier for developers to test…
In this tutorial I’m going to teach you how conditional styling work and what are some reasons to use them. First off conditional style-sheets can target certain versions of IE or hide certain things from it. It’s a good way to work around the differences Internet Explorer uses in its browser.
The tool of choice for fighting IE problems is the conditional style-sheet. IE provides comment tags, supported all the way up to the current IE 8 to target specific versions, as well as greater-than/less-than stuff for targeting multiple versions at once.
So here we are going to discuss our topic. All the code I’m going to show you goes somewhere within the <head></head> tags in your HTML file.
<!–[if IE]>
<link type=”text/css” rel=”stylesheet” href=”IE-only.css” />
<![endif]–>
<!–[if IE]>
<style type=”text/css”>
#div_outer { margin-left: 20px; }
</style>
<![endif]–>
<!–[if lt IE 8]>
<link type=”text/css” rel=”stylesheet” href=”IE_lessThan8.css” />
<![endif]–>
<!–[if gt IE 6]>
<link type=”text/css” rel=”stylesheet” href=”IE_greaterThan6.css” />
<![endif]–>
<!–[if !IE]><!–>
<link type=”text/css” rel=”stylesheet” href=”noIE.css” />
<!–<![endif]–>
<!–[if IE 5]>
<p>This message is only displayed in IE5.</p>
<![endif]–>
<!–[if !IE 5]>
<p>This message is only displayed in browsers other than IE5.</p>
<![endif]–>
<!–[if lt IE 7]>
<p>This message is only displayed in browsers earlier than IE7.</p>
<![endif]–>
<!–[if gte IE 6]>
<p>This message is only displayed in IE6 and greater.</p>
<![endif]–>
In an increasingly complex threat environment, organizations must take a proactive and layered approach to…
Search Engine Optimization has always been a key strategy for online growth. SEO is evolving…
I've been observing the technology space change for many years, and to be honest with…
Let’s be honest. For years, ERP platforms weren’t exactly known for their looks. They got…
At a time when automation, digitalization, and globalization are defining how industries operate. It means…
Freelancing isn’t just a trend. Freelance Jobs has evolved into a smart way for individuals…
View Comments
Nice... Thanks for your great site
I was very much looking for these codes
Thanks
Cool .. thanks for share
Cool stuff.It came at the right time.