<?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>Farooq Azam &#187; HTML &amp; CSS</title>
	<atom:link href="http://www.farooqazam.net/category/html-css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.farooqazam.net</link>
	<description>C# &#38; .NET Programming Blog</description>
	<lastBuildDate>Fri, 23 Jul 2010 20:15:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Even Microsoft is sick of IE</title>
		<link>http://www.farooqazam.net/even-microsoft-is-sick-of-ie/</link>
		<comments>http://www.farooqazam.net/even-microsoft-is-sick-of-ie/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 17:29:44 +0000</pubDate>
		<dc:creator>Farooq Azam</dc:creator>
				<category><![CDATA[Funny Stuff]]></category>
		<category><![CDATA[HTML & CSS]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://www.farooqazam.net/?p=139</guid>
		<description><![CDATA[I am currently using Dialup. Sometimes when a page is loading and there&#8217;s some problem with the connection then the unloaded code shows up as text. Today I was viewing Microsoft&#8217;s website and this is what I saw (after a connection problem): LOL. Even Microsoft is sick of Internet Explorer.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; margin-top: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.farooqazam.net%2Feven-microsoft-is-sick-of-ie%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.farooqazam.net%2Feven-microsoft-is-sick-of-ie%2F&amp;source=farooqaaa&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I am currently using Dialup. Sometimes when a page is loading and there&#8217;s some problem with the connection then the unloaded code shows up as text.</p>
<p>Today I was viewing Microsoft&#8217;s website and this is what I saw (after a connection problem):</p>
<p><a title="Internet Explorer sucks" href="http://www.farooqazam.net/wp-content/uploads/2009/10/ie-sucks.gif"><img class="alignnone size-full wp-image-141" title="Internet Explorer sucks" src="http://www.farooqazam.net/wp-content/uploads/2009/10/ie-sucks-z.gif" alt="Internet Explorer sucks" width="434" height="248" /></a></p>
<p>LOL. Even Microsoft is sick of Internet Explorer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.farooqazam.net/even-microsoft-is-sick-of-ie/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to remove selection rectangle using CSS</title>
		<link>http://www.farooqazam.net/how-to-remove-selection-rectangle-using-css/</link>
		<comments>http://www.farooqazam.net/how-to-remove-selection-rectangle-using-css/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 11:56:50 +0000</pubDate>
		<dc:creator>Farooq Azam</dc:creator>
				<category><![CDATA[HTML & CSS]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[rectangle]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.farooqazam.net/?p=95</guid>
		<description><![CDATA[Have you ever noticed that when you click a link (in Firefox,IE etc) a dotted rectangle appears around it? (see the image above) I don&#8217;t have a problem with it. But if you find it boring and want to get rid of it. Then I&#8217;ve the best solution for you. You can get rid of [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; margin-top: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.farooqazam.net%2Fhow-to-remove-selection-rectangle-using-css%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.farooqazam.net%2Fhow-to-remove-selection-rectangle-using-css%2F&amp;source=farooqaaa&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><img title="recty" src="../wp-content/uploads/2009/09/recty.gif" alt="recty" width="360" height="69" /></p>
<p>Have you ever noticed that when you click a link <em>(in Firefox,IE etc)</em> a dotted rectangle appears around it? (see the image above)</p>
<p>I don&#8217;t have a problem with it. But if you find it boring and want to get rid of it. Then I&#8217;ve the best solution for you. You can get rid of it with one line of code.</p>
<p>All you have to do is to insert this into your CSS:</p>
<pre class="brush: css;">* { outline: none; }</pre>
<p>And those rectangles (or outlines) will never appear again. <img class="alignnone" style="border:none; background: transparent;" title="Smile" src="http://www.farooqazam.net/wp-includes/images/smilies/icon_smile.gif" border="0" alt="" width="15" height="15" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.farooqazam.net/how-to-remove-selection-rectangle-using-css/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
