<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blue Arena &#187; compatibility</title>
	<atom:link href="http://www.bluearena.com/tag/compatibility/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bluearena.com</link>
	<description>Web Development &#38; Digital Marketing</description>
	<lastBuildDate>Wed, 16 Nov 2011 20:37:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>IE6 &#8211; When Enough Is Enough</title>
		<link>http://www.bluearena.com/2009/05/ie6-when-enough-is-enough/</link>
		<comments>http://www.bluearena.com/2009/05/ie6-when-enough-is-enough/#comments</comments>
		<pubDate>Tue, 19 May 2009 20:41:25 +0000</pubDate>
		<dc:creator>Maloric</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[compatibility]]></category>
		<category><![CDATA[compliant]]></category>
		<category><![CDATA[cross]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[develop]]></category>
		<category><![CDATA[explorer]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[ie7]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[standard]]></category>
		<category><![CDATA[w3c]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://wordpress.bluearena.com/?p=13</guid>
		<description><![CDATA[On August 1st, 2001, Microsoft revealed their newest browser, IE6, which replaced IE5.5.  IE6 came bundled with Windows XP, and as such became the most used browser of its time.  In fact, when Internet Explorer 7 was release in October 2006, IE6 continued to hold a greater market share than its successor for almost a [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-38" title="broken-ie6" src="http://www.bluearena.com/wp-content/uploads/2009/05/broken-ie6.jpg" alt="broken-ie6" width="153" height="101" />On August 1st, 2001, Microsoft revealed their newest browser, IE6, which replaced IE5.5.  IE6 came bundled with Windows XP, and as such became the most used browser of its time.  In fact, when Internet Explorer 7 was release in October 2006, IE6 continued to hold a greater market share than its successor for almost a year.  Eventually users began to move onto IE7, and many even shifted to Mozilla Firefox, the open source browser.  At the time of writing, IE6 still holds an impressive ~17% of the market, which I put down to one factor: Windows XP.<span id="more-13"></span></p>
<p>Since IE6 comes bundled with Windows XP, which currently holds a 62% market share, it&#8217;s no surprise that IE6 is so widely used despite its age.  Although it is very simple for users to upgrade to Internet Explorer 7, many choose not to simply because they prefer to use what they know, or because IE6 works just fine for them.  And in fairness, many users wouldn&#8217;t notice a difference in how websites look between one browser and the next.</p>
<p>But that&#8217;s because we web developers have to spend sometimes hours at a time testing and tweaking websites until they work flawlessly in a browser that was <strong>replaced </strong>over two years ago.  I don&#8217;t blame Microsoft, since Internet Explorer 7 was a huge leap forward in terms of W3C compliance.  And Internet Explorer 8, which replaced its predecessor in March this year, is even better still.  I don&#8217;t even blame the people using Internet Explorer 6, as a lot of them probably don&#8217;t even realise there is a problem.  I blame the web developers who continue to support it.  Now I know a lot of you will tell me it&#8217;s not financially viable to drop support for such a widely used browser, but I&#8217;m not talking about abandoning it altogether.  I just mean if you have to choose between supporting IE6 and using more modern techniques, then you should opt for the latter.</p>
<h4>It starts to get a bit technical from here on in&#8230;</h4>
<p>A simple example is this: Internet Explorer 6 can&#8217;t recognise the &#8220;:hover&#8221; meta class on any element except for a hyperlink.  It can&#8217;t recognise &#8220;:first-child&#8221; or something as simple as &#8220;ul &gt; li&#8221; (denoting a direct descendant).  If you need to simulate these styles for the sake of functionality, then it is acceptable to use javascript.  But if you need to simlate a style for a purely visual reason, then forget it.  Here&#8217;s an example:</p>
<pre>&lt;ul class="horizontalList"&gt;
    &lt;li&gt;Test list item 1&lt;/li&gt;
    &lt;li&gt;Test list item 2&lt;/li&gt;
    &lt;li&gt;Test list item 3&lt;/li&gt;
    &lt;li&gt;Test list item 4&lt;/li&gt;
&lt;/ul&gt;</pre>
<p>Now let&#8217;s imagine we need the first item in this list to have no border, but for all other items to have a 1px solid border on the left.  Our stylesheet would contain something like this:</p>
<pre>ul.horizontalList li {
    display:inline;
    padding:0 4px;
    border-left:1px solid #000;
}
ul.horizontalList li:first-child {
    border-left:0;
}</pre>
<p>Relatively simple, but in IE6 the second rule is ignored due to its lack of support for :first-child.  The common way to fix this is to add &#8220;class=&#8217;first&#8217;&#8221; to the first list item and then change the selector to:</p>
<pre>ul.horizontalList li.first</pre>
<p>This effectively makes the first-child pseudo class useless, as there is no point in applying the style to both.  And you may think &#8220;well sure, why not? It only takes a second to add.&#8221;  But all of these add up.  Let&#8217;s look at another example:</p>
<pre>&lt;div class="border highlight"&gt;
    &lt;p&gt;This is a test paragraph&lt;/p&gt;
&lt;/div&gt;

&lt;style type="text/css"&gt;
    div.border { border:1px solid #000; color:#000; }
    div.highlight { background:#F00; }
    div.border.highlight { color:#FFF; font-weight:bold; }
&lt;/style&gt;</pre>
<p>According to this, any div with class=&#8221;highlight&#8221; should have a red background and any div with class=&#8221;border&#8221; should have black text and a black border.  But if a div has both classes, the text should instead be white and bold.  Simple, yes?  Well IE6 ignores the last line, which can be a real pain in some cases.  Often it forces you to create a new class such as class=&#8221;borderHighlight&#8221; to encapsulate both styles, or to have parent elements with a different class to modify the appearance of their children.</p>
<p>My point is this: if you have to rewrite some of your CSS or markup to accomodate this kind of behaviour, don&#8217;t.  It&#8217;s simple &#8211; if I buy a computer game and it has a bug, the first thing I&#8217;m asked to do when I contact tech support is upgrade to the latest version.  Why?  Because the problem has already been addressed.  This should be your approach to web development &#8211; make the client aware that they have an out of date browser by displaying a message to only users or IE6 or below.  Recommend that they upgrade to the latest version of Internet Explorer and warn them that the site may display incorrectly if they do not.</p>
<h3>Be flexible</h3>
<p>This isn&#8217;t a hard and fast rule.  If a client is paying you to support IE6 then spend the extra time doing so.  And sometimes an extra line of css can make all the difference.  Don&#8217;t drop support for IE6 just to spite its users &#8211; use the fixes you can quickly apply but don&#8217;t let it impact on the markup and styles you use for other browsers.  Ultimately you have to decide whether the time you spend is worth the result.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bluearena.com/2009/05/ie6-when-enough-is-enough/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Should I Upgrade My Browser?</title>
		<link>http://www.bluearena.com/2009/05/why-should-i-upgrade-my-browser/</link>
		<comments>http://www.bluearena.com/2009/05/why-should-i-upgrade-my-browser/#comments</comments>
		<pubDate>Fri, 15 May 2009 23:21:34 +0000</pubDate>
		<dc:creator>Maloric</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[compatibility]]></category>
		<category><![CDATA[compatible]]></category>
		<category><![CDATA[explorer]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[ie7]]></category>
		<category><![CDATA[ie8]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[outdated]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://wordpress.bluearena.com/?p=24</guid>
		<description><![CDATA[There are a host of reasons to upgrade your browser.  I&#8217;m going to make an assumption that most people using an out of date browser are using Internet Explorer 6, as it ships with Windows XP and still holds a 17% market share.  Here are some reasons to upgrade: In short, Internet Explorer 6 is [...]]]></description>
			<content:encoded><![CDATA[<p>There are a host of reasons to upgrade your browser.  I&#8217;m going to make an assumption that most people using an out of date browser are using Internet Explorer 6, as it ships with Windows XP and still holds a 17% market share.  Here are some reasons to upgrade:<span id="more-24"></span></p>
<ul>
<li>In short, Internet Explorer 6 is an out of date browser that doesn&#8217;t recognise many modern techniques for building websites.  As a result, web developers tend to support IE6 at the expense of using techniques that could save them time and effort whilst allowing more creative design.</li>
<li>IE6 is also less secure than it&#8217;s successors.  Although it is still patched with Windows XP Service packs, the latest of which was released in April 2008, support will not continue forever.  Internet Explorer 8 was released in March 2009, meaning that IE6, first released in 2001, is now 2 generations old.  Microsoft have enough to worry about without supporting an obsolete browser as well.</li>
<li>IE6 has less features than its successors &#8211; most notably it lacks tabbed browsing, meaning you need a new window for every site you want to visit at the same time.  In IE7+ you can have multiple sites open in the same window.</li>
<li>Less web developers are supporting IE6 all the time.  Sticking with this browser means you will notice more and more sites that look broken.</li>
<li>It costs nothing to upgrade.  You can upgrade to a <a href="http://www.microsoft.com/windows/internet-explorer/" target="_blank">newer version of Internet Explorer</a>, or try one of the other browsers on offer: <a href="http://www.mozilla.com" target="_blank">Mozilla Firefox</a>, <a href="http://www.apple.com/safari/download/" target="_blank">Safari</a>, <a href="http://www.opera.com/" target="_blank">Opera</a> and <a href="http://www.google.com/chrome/" target="_blank">Google Chrome</a> are just a few.</li>
</ul>
<p>If you want a more in depth explination, read on&#8230;</p>
<h2>HTML 101</h2>
<p>For the uninitiated, let me first explain what html is.  Hyper Text Markup Language, to give it its full name, is the language in which websites are written.  It is how we developers create a website.  A web browser, such as Internet Explorer or Firefox, is the program responsible for reading HTML and displaying it as a website.  With me so far?  Good&#8230;</p>
<h2>The World Wide Web Consortium</h2>
<p>Once upon a time, the World Wide Web Consortium, or W3C to those of us in a hurry, decided it would be swell if we had a set of standards which would define how browsers should render HTML.  The idea was that any browser on any machine could take a website and produce the same result, thus making the website accessible to the widest possible audience.</p>
<p>Unfortunately, this is much easier said than done.  Few browsers can boast 100% compliance to the W3C standards without some small bugs or quirks, but usually these are fairly minor issues that are easily solved.  Unfortunately, this isn&#8217;t the case with all browsers.  IE6 and its predeccesors are particular headaches for web developers, as they do not support newer techniques for styling content.  And while many point the finger squarely at Microsoft for this, the problem lies with the users who continue to create a need to support IE6.  Microsoft themselves have long since moved on, releasing 2 updated browsers since IE6 was released in 2001.  I&#8217;m sure they would appreciate the opportunity to stop supporting IE6 and concentrate on newer projects instead, but while so many people cling to an old browser, this won&#8217;t be possible.</p>
<h2>A Time For Action</h2>
<p>If you can, go and download <a href="http://www.microsoft.com/windows/internet-explorer/" target="_blank">the latest version of Internet Explorer</a> or one of the other browsers listed above.  If you can&#8217;t install the new version yourself (for instance if you&#8217;re part of a network at work or school), talk to the system administrator and ask if they can do it.  If you already use Windows XP then upgrading to Internet Explorer 7 or 8 is easy and costs you nothing.  If you use Windows Vista or later then you already have Internet Explorer 7 or later &#8211; congratulations, you&#8217;re a part of the solution!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bluearena.com/2009/05/why-should-i-upgrade-my-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

