<?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>Inspect Element &#187; dev</title>
	<atom:link href="http://inspectelement.com/tag/dev/feed/" rel="self" type="application/rss+xml" />
	<link>http://inspectelement.com</link>
	<description>Web Design &#38; Development Blog</description>
	<lastBuildDate>Wed, 08 Sep 2010 15:30:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Page Speed Optimisation</title>
		<link>http://inspectelement.com/snippets/page-speed-optimisation/</link>
		<comments>http://inspectelement.com/snippets/page-speed-optimisation/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 14:45:31 +0000</pubDate>
		<dc:creator>Tom Kenny</dc:creator>
				<category><![CDATA[Snippet]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://inspectelement.com/?p=7100</guid>
		<description><![CDATA[Google has announced they will start rewarding your site’s page speed. And in their Webmaster Tools they hint that the bar is set at ~1.4 seconds. That&#8217;s a good enough reason to start thinking seriously about web optimisation. Dave Rupert&#8217;s work is probably the best place to start. He shows how he managed to reduce a page [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Google has announced they will start rewarding your site’s page speed. And in their <a href="http://google.com/webmasters/tools">Webmaster Tools</a> they hint that <strong>the bar is set at ~1.4 seconds</strong>.</p></blockquote>
<p>That&#8217;s a good enough reason to start thinking seriously about web optimisation. Dave Rupert&#8217;s work is probably the best place to start. He shows how he managed to reduce a page from <strong><em>248.96KB</em></strong> to <em><strong><em>~36KB</em></strong></em>!</p>
]]></content:encoded>
			<wfw:commentRss>http://inspectelement.com/snippets/page-speed-optimisation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Colour Quick Tip</title>
		<link>http://inspectelement.com/thesimplethings/css-colour-quick-tip/</link>
		<comments>http://inspectelement.com/thesimplethings/css-colour-quick-tip/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 08:00:50 +0000</pubDate>
		<dc:creator>Tom Kenny</dc:creator>
				<category><![CDATA[the simple things]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[dev]]></category>

		<guid isPermaLink="false">http://tkenny.co.uk/inspectelement/?p=159</guid>
		<description><![CDATA[Using commenting in code is a good way to describe sections of code or giving a visual structure, helping anyone else who sees or has to edit the code.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-617" title="csscolour3" src="http://inspectelement.com/wp-content/uploads/2009/06/csscolour3.png" alt="csscolour3" width="560" height="218" /></p>
<p>Using commenting in code is a good way to describe sections of code or giving a visual structure, helping anyone else who sees or has to edit the code. I find that a good way to use commenting is to include a list of all colours used in the CSS at the top of the CSS file. This, combined with a short description of what the colour is and where it is used on the site, is a good way of not only helping others edit a file but also helps yourself during the CSS development stages.</p>
<pre lang="css">/* ------------------------------------------------------
Colours:
#555 - grey (used on text)
#33281E - very dark grey (used for block headers)
#A64A23 - brown
#9C9A69 - green (used exclusively on the Beneficiation page)
#ECE2DE - light grey (used for third level navigation)
------------------------------------------------------- */</pre>
<p>It can be a frustrating experience to edit someone else&#8217;s code as everyone does things differently so something as simple as helpful comments will go a long way to reducing that frustrating down the road.</p>
]]></content:encoded>
			<wfw:commentRss>http://inspectelement.com/thesimplethings/css-colour-quick-tip/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Rounded Corners on Input Fields in (almost) all Modern Browsers</title>
		<link>http://inspectelement.com/didyouknow/rounded-corners-on-input-fields-in-almost-all-modern-browsers/</link>
		<comments>http://inspectelement.com/didyouknow/rounded-corners-on-input-fields-in-almost-all-modern-browsers/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 08:00:25 +0000</pubDate>
		<dc:creator>Tom Kenny</dc:creator>
				<category><![CDATA[did you know...?]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://tkenny.co.uk/inspectelement/?p=107</guid>
		<description><![CDATA[Rounded corners in web design is a popular, modern technique. In general, it can give a site a smoother look and feel to the design but the only way to get it working in all browsers is through the use of images. If you apply the method of progressive enhancement then you can use CSS3 techniques to add rounded corners to web elements without the need for images.]]></description>
			<content:encoded><![CDATA[<p>Rounded corners in web design is a popular, modern technique. In general, it can give a site a smoother look and feel to the design but the only way to get it working in all browsers is through the use of images. If you apply the method of <a href="http://www.alistapart.com/articles/understandingprogressiveenhancement">progressive enhancement</a> then you can useÂ <a href="http://www.css3.info">CSS3</a> techniques to add rounded corners to web elements without the need for images.</p>
<p><img src="http://inspectelement.com/wp-content/uploads/2009/06/roundedcorners.gif" alt="" /></p>
<p>It is common knowledge that this can be done on divs but many designers and developers probably don&#8217;t think of using it on input fields. Well, you can! By using the code below you can let the browser do the work while cutting down on the amount of data that the user downloads and also reducing the number of HTTP requests which improves performance.<span id="more-107"></span>Just use the following segment of code in your CSS, adjusting the border radius as you see fit:</p>
<pre>input { -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; }</pre>
<h3>Browser Support</h3>
<p>Currently this is only supported in the following major browsers:</p>
<ul>
<li>Firefox 2+</li>
<li>Safari 3+</li>
<li>Google Chrome</li>
<li>Opera</li>
</ul>
<p>-moz-border-radius is aÂ proposal of mozilla so only works in Firefox and -webkit-border-radius is a proposal of webkit so will work in webkit browsers such as Chrome and Safari. Don&#8217;t forget to include the standard border-radius property for future browser support as this is the value that the final CSS3 spec is highly likely to use.</p>
<p>Unfortunately Internet Explorer 8 does not support rounded corners or border-radius of any kind. This was a chance that Microsoft had to gain back a tiny bit of credibility amongst the web design/development community but they couldn&#8217;t even implement this simple property.</p>
<h3>Examples</h3>
<p>You can see an example of this on this very page. Just view the comment form in any supported browser and you&#8217;ll see the input fields have rounded corners. This makes them easier on the eye and more friendly to the user, added encouragement for them to comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://inspectelement.com/didyouknow/rounded-corners-on-input-fields-in-almost-all-modern-browsers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Enable Safari&#8217;s Awesome Built-in Development Tools</title>
		<link>http://inspectelement.com/didyouknow/enable-safaris-awesome-built-in-development-tools/</link>
		<comments>http://inspectelement.com/didyouknow/enable-safaris-awesome-built-in-development-tools/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 08:00:01 +0000</pubDate>
		<dc:creator>Tom Kenny</dc:creator>
				<category><![CDATA[did you know...?]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://tkenny.co.uk/inspectelement/?p=325</guid>
		<description><![CDATA[Almost all web developers know about <a href="http://getfirebug.com/">Firebug</a>, a plugin for Firefox that makes web development so much easier, at least for developing in Firefox. Not everyone knows that Safari has its own development tools built right in.]]></description>
			<content:encoded><![CDATA[<p>Almost all web developers know about <a href="http://getfirebug.com/">Firebug</a>, a plugin for Firefox that makes web development so much easier, at least for developing in Firefox. Not everyone knows that Safari has its own development tools built right in.</p>
<p>Available on both the Windows and Mac versions of Safari (preferences &gt; advanced) is a tick box &#8216;Show Develop menu in menu bar&#8217; which enables the development tools. Â By default it is unticked but enabling it allows you to right-click on any element on a web page and select Inspect Element and bring up the <a href="http://webkit.org/blog/197/web-inspector-redesign/">Web Inspector</a> much like you can do with the Firebug plugin for Firefox.</p>
<p><img class="alignnone size-full wp-image-518" title="webinspector" src="http://inspectelement.com/wp-content/uploads/2009/06/webinspector.jpg" alt="webinspector" width="560" height="231" /></p>
<p><span id="more-325"></span>Above: the Web Inspector.</p>
<p><img class="alignnone size-full wp-image-326" title="developmenu" src="http://inspectelement.com/wp-content/uploads/2009/05/developmenu.jpg" alt="developmenu" width="318" height="329" /></p>
<p>The Mac version Â gives you this menu which as you can see allows you to perform some very handy tasks such as opening the page in another browser and spoofing the browser&#8217;s user agent.</p>
]]></content:encoded>
			<wfw:commentRss>http://inspectelement.com/didyouknow/enable-safaris-awesome-built-in-development-tools/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
