<?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>Ryan Roberts</title>
	<atom:link href="http://ryanroberts.co.uk/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://ryanroberts.co.uk/blog</link>
	<description>A freelance web designer living in Aberdeen - Scotland.</description>
	<lastBuildDate>Mon, 28 Sep 2009 11:26:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Why front-end developers are so important to the future of businesses on the web</title>
		<link>http://ryanroberts.co.uk/blog/2009/09/why-front-end-developers-are-so-important-to-the-future-of-businesses-on-the-web/</link>
		<comments>http://ryanroberts.co.uk/blog/2009/09/why-front-end-developers-are-so-important-to-the-future-of-businesses-on-the-web/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 11:00:54 +0000</pubDate>
		<dc:creator>Ryan Roberts</dc:creator>
				<category><![CDATA[Frontend Web Dev]]></category>
		<category><![CDATA[frontend]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://ryanroberts.co.uk/blog/?p=236</guid>
		<description><![CDATA[Unfortunately the perception of the front-end developer’s role remains somewhat coloured by an early association in observers’ minds with the other, loosely related role of the web designer. The role of web designer is an extremely important and valid one, but it is very different to that of the web developer, and the lack of [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Unfortunately the perception of the front-end developer’s role remains somewhat coloured by an early association in observers’ minds with the other, loosely related role of the web designer. The role of web designer is an extremely important and valid one, but it is very different to that of the web developer, and the lack of a clear distinciton between the two, in some people’s perception, is unhelpful and does both roles an&nbsp;injustice.</p>
<p>Largely gone are the days of HTML-monkeys, spending days on end converting Photoshop comps to pixel-perfect layouts. A web developer’s role is broad: from developing in what Yahoo!’s Nate Koechley calls ‘the world’s most hostile development environment’ — the browser — and ensuring cross-platform and cross-browser consistency, to working with art directors and designers and remaining true to their vision, to considerations and implementations of accessibility, usability and the overall user&nbsp;experience.</p>
<p>A web developer is responsible for everything that sits on the client side of the web stack — the content, presentation and behaviour layers. Few other roles touch so many other key aspects of a business as does a web developer’s. Good businesses realise what an asset they have in their front-end web development team, and welcome their input into the product development&nbsp;process.</p></blockquote>
<p>Read the full article at:&nbsp;<cite><a href="http://www.paulcarvill.com/2009/09/why-front-end-developers-are-so-important-to-the-future-of-businesses-on-the-web/">paulcarvill.com</a></cite></p>
]]></content:encoded>
			<wfw:commentRss>http://ryanroberts.co.uk/blog/2009/09/why-front-end-developers-are-so-important-to-the-future-of-businesses-on-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful wee jQuery snippets</title>
		<link>http://ryanroberts.co.uk/blog/2009/09/useful-wee-jquery-snippets/</link>
		<comments>http://ryanroberts.co.uk/blog/2009/09/useful-wee-jquery-snippets/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 07:18:43 +0000</pubDate>
		<dc:creator>Ryan Roberts</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[snippets]]></category>

		<guid isPermaLink="false">http://ryanroberts.co.uk/blog/?p=233</guid>
		<description><![CDATA[Here are some short jQuery snippets I use on a regular&#160;basis:
Header catch-all&#160;snippet
	$('h1,h2,h3,h4,h5,h6').addClass('hx');
This snippet adds the class .hx to all heading elements. Having this class to use comes in handy for non-essential styling and saves you from typing out the following #content h1, #content h2, #content h3… etc. Ideally I&#8217;d have a h* class but CSS [...]]]></description>
			<content:encoded><![CDATA[<p>Here are some short jQuery snippets I use on a regular&nbsp;basis:</p>
<h3>Header catch-all&nbsp;snippet</h3>
<pre><code>	$('h1,h2,h3,h4,h5,h6').addClass('hx');</code></pre>
<p>This snippet adds the class .hx to all heading elements. Having this class to use comes in handy for non-essential styling and saves you from typing out the following <code>#content h1, #content h2, #content h3</code>… etc. Ideally I&#8217;d have a h* class but CSS isn&#8217;t a fan of the&nbsp;asterisk.</p>
<h3>Strict doctype friendly new window&nbsp;snippet</h3>
<pre><code>    $('a[rel=external]').click(function(){
		window.open(this.href);
		return false;
	});</code></pre>
<p>Sometimes you just have to open a link in a new window/tab and this is an old but still very useful snippet to&nbsp;have.</p>
<p>Note: If you don&#8217;t agree with the use of <code>rel</code> attribute for defining external links simply swap <code>rel</code> out for <code>class</code> or even <code>a[href^"=http://"]</code> which would target all links starting with&nbsp;<em>http://</em>.</p>
<h3>Print this page&nbsp;snippet</h3>
<pre><code>	$('&lt;a href="#print"&gt;Print this page&lt;/a&gt;').click(function(){window.print();}).appendTo("body");</code></pre>
<p>Appends a link to the body allowing the user to print out the page. You can change body to any other element in the document. You can also change <code>.appendTo</code> to <code>.prependTo</code> or one of the many other <a href="http://docs.jquery.com/Manipulation">jQuery manipulation</a>&nbsp;thingamabobs.</p>
<h3>Grab cite and stick it into a title attribute&nbsp;snippet</h3>
<pre><code>$("q, blockquote").hover(function(){
	var getCite = $(this).attr("cite");
	var cite = ('Cite — ' + getCite);
	$(this).attr({ title: cite });
});</code></pre>
<p>Now this one probably isn&#8217;t all that useful to everyone but I thought I&#8217;d stick it in anyway. I have no doubt it could be improved so if you have a suggestion please post it. What it does is grab the <code>cite</code> attribute content (usually a <abbr title="Uniform Resource Locator">URL</abbr>) and sticks it into a <code>title</code> attribute so you can hover over the element and see the&nbsp;citation.</p>
<h3>Got any of your own to&nbsp;share?</h3>
<p>It would be great to share common snippets you find useful in every day use, so please feel free to suggest any in a comment and maybe you could make this post even better&nbsp;:)</p>
]]></content:encoded>
			<wfw:commentRss>http://ryanroberts.co.uk/blog/2009/09/useful-wee-jquery-snippets/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>AIGA &#8211; Defining the Designer of 2015</title>
		<link>http://ryanroberts.co.uk/blog/2009/07/aiga-defining-the-designer-of-2015/</link>
		<comments>http://ryanroberts.co.uk/blog/2009/07/aiga-defining-the-designer-of-2015/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 17:28:53 +0000</pubDate>
		<dc:creator>Ryan Roberts</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://ryanroberts.co.uk/blog/?p=206</guid>
		<description><![CDATA[Through interviews, focus groups, workshops and surveys AIGA and Adobe have laid out a set of essential competencies they believe attempt to define designer of the future. AGIA say the findings are not conclusive and the set of competencies are to be considered for the wider studio environment rather than for a single designer. Here [...]]]></description>
			<content:encoded><![CDATA[<p>Through interviews, focus groups, workshops and surveys AIGA and Adobe have laid out a set of <a href="http://www.aiga.org/content.cfm/designer-of-2015">essential competencies</a> they believe attempt to define designer of the future. AGIA say the findings are not conclusive and the set of competencies are to be considered for the wider studio environment rather than for a single designer. Here are the top&nbsp;five:</p>
<ol>
<li>Ability to create and develop visual response to communication problems, including understanding of hierarchy, typography, aesthetics, composition and construction of meaningful&nbsp;images</li>
<li>Ability to solve communication problems including identifying the problem, researching, analysis, solution generating, prototyping, user testing and outcome&nbsp;evaluation</li>
<li>Broad understanding of issues related to the cognitive, social, cultural, technological and economic contexts for&nbsp;design</li>
<li>Ability to respond to audience contexts recognizing physical, cognitive, cultural and social human factors that shape design&nbsp;decisions</li>
<li>Understanding of and ability to utilize tools and&nbsp;technology</li>
</ol>
<p>I don&#8217;t think there is anything particularly surprising here or in <a href="http://www.aiga.org/content.cfm/designer-of-2015-competencies">the full list</a>. These competencies are required now are they&nbsp;not?</p>
]]></content:encoded>
			<wfw:commentRss>http://ryanroberts.co.uk/blog/2009/07/aiga-defining-the-designer-of-2015/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In defense of HTML 5 and that 2022 date</title>
		<link>http://ryanroberts.co.uk/blog/2009/07/in-defense-of-html-5-and-that-2022-date/</link>
		<comments>http://ryanroberts.co.uk/blog/2009/07/in-defense-of-html-5-and-that-2022-date/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 02:02:48 +0000</pubDate>
		<dc:creator>Ryan Roberts</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://ryanroberts.co.uk/blog/?p=162</guid>
		<description><![CDATA[HTML 5 has been getting a lot of focus lately, especially the 2022 date of when it will apparently be&#160;ready. 
I&#8217;ve considering writing about this for a while now but today Ian Hickson (HTML 5 editor) posted a comment on Jeffrey Zeldman&#8217;s blog that for me pretty much clears up the&#160;matter:
I’ve mentioned 2022 as a [...]]]></description>
			<content:encoded><![CDATA[<p>HTML 5 has been getting a lot of focus lately, especially the 2022 date of when it will <em>apparently</em> be&nbsp;ready. </p>
<p>I&#8217;ve considering writing about this for a while now but today <a href="http://www.zeldman.com/2009/07/07/in-defense-of-web-developers/#comment-44583">Ian Hickson (HTML 5 editor) posted a comment</a> on <a href="http://www.zeldman.com/">Jeffrey Zeldman&#8217;s blog</a> that for me pretty much clears up the&nbsp;matter:</p>
<blockquote><p>I’ve mentioned 2022 as a date I hope to see two complete and bug free implementations of all of HTML5 in various articles, but I wasn’t aware of one where I was quoted as actually saying it’d only be ready by then. The plan is to have it more or less “ready” by October this year. (We’ve never had two complete and bug free implementations of any Web spec before as far as I know, so 2022 is pretty optimistic in a&nbsp;way.)</p></blockquote>
<p>Sounds much better don&#8217;t you think? Pretty much ready by the end of&nbsp;2009.</p>
<p>Let&#8217;s just get this straight — last call working draft is planned for October 2009, Candidate Recommendation status is set for 2012 and then the Proposed Recommendation should appear around 2022. In-between 2012 and 2022 browser vendors will implement the Proposed Recommendation and (hopefully) providing feedback to further refine the spec. The <abbr title="Web Hypertext Application Technology Working Group">WHATWG</abbr> will work on detailed test suites (or I presume it will be them) so browser vendors can aim for that &#8220;complete and bug free implementation&#8221;. But as Hixie says this hasn&#8217;t been done before so 2022 isn&#8217;t such a crazy&nbsp;date.</p>
<p>Over the next few years we should expect to get increased support for and use out of HTML 5, certainly far in advance of 2022… In fact you can start using <a href="http://html5doctor.com/">HTML 5 today</a> if you&nbsp;like.</p>
<p>You can find out more about HTML 5 including the time-line in this <a href="http://blogs.techrepublic.com.com/programming-and-development/?p=718">Tech Republic interview with Ian&nbsp;Hickson</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ryanroberts.co.uk/blog/2009/07/in-defense-of-html-5-and-that-2022-date/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Accessibility Extension</title>
		<link>http://ryanroberts.co.uk/blog/2009/07/firefox-accessibility-extension/</link>
		<comments>http://ryanroberts.co.uk/blog/2009/07/firefox-accessibility-extension/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 11:07:22 +0000</pubDate>
		<dc:creator>Ryan Roberts</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[extensions]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://ryanroberts.co.uk/blog/?p=171</guid>
		<description><![CDATA[Developed by Jon Gunderson of the Illinois Center for Information Accessibility, the Firefox Accessibility Extension is a valuable addon that aims to assist web developers and people with disabilities in navigation, running accessibility checks, reports, styling and much more. It&#8217;s essentially an accessibility version of the web developer toolbar addon for&#160;Firefox. 
Thanks to @SeanDelaney for [...]]]></description>
			<content:encoded><![CDATA[<p>Developed by Jon Gunderson of the <a href="http://www.cita.uiuc.edu/">Illinois Center for Information Accessibility</a>, the <a href="http://firefox.cita.uiuc.edu/">Firefox Accessibility Extension</a> is a valuable addon that aims to assist web developers and people with disabilities in navigation, running accessibility checks, reports, styling and much more. It&#8217;s essentially an accessibility version of the <a href="https://addons.mozilla.org/en-US/firefox/addon/60">web developer toolbar</a> addon for&nbsp;Firefox. </p>
<p>Thanks to <a href="http://www.twitter.com/seandelaney">@SeanDelaney</a> for pointing it&nbsp;out.</p>
]]></content:encoded>
			<wfw:commentRss>http://ryanroberts.co.uk/blog/2009/07/firefox-accessibility-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A nice example of paper prototyping</title>
		<link>http://ryanroberts.co.uk/blog/2009/07/a-nice-example-of-paper-prototyping/</link>
		<comments>http://ryanroberts.co.uk/blog/2009/07/a-nice-example-of-paper-prototyping/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 14:11:01 +0000</pubDate>
		<dc:creator>Ryan Roberts</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Experiments]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[prototyping]]></category>

		<guid isPermaLink="false">http://ryanroberts.co.uk/blog/?p=149</guid>
		<description><![CDATA[
Each one on its own square by Fabricio Marchezini, Karine Drumond &#038; Leandro Alves, is an animated paper exploration of a new web browser concept aimed at improving user&#160;productivity.
The concept was created by the group for Mozilla Labs &#8216;Design Challenge: Summer&#160;09&#8217;.
]]></description>
			<content:encoded><![CDATA[<p><object width="430" height="340"><param name="movie" value="http://www.youtube.com/v/Oqsi_z3J-rk&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Oqsi_z3J-rk&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="430" height="340"></embed></object></p>
<p><a href="http://www.flickr.com/photos/latitude14/sets/72157620154630306/">Each one on its own square</a> by Fabricio Marchezini, Karine Drumond &#038; Leandro Alves, is an animated paper exploration of a new web browser concept aimed at improving user&nbsp;productivity.</p>
<p>The concept was created by the group for <a href="http://design-challenge.mozilla.com/summer09/">Mozilla Labs &#8216;Design Challenge: Summer&nbsp;09&#8217;</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ryanroberts.co.uk/blog/2009/07/a-nice-example-of-paper-prototyping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>W3C to drop XHTML 2 in favour of HTML 5</title>
		<link>http://ryanroberts.co.uk/blog/2009/07/w3c-to-drop-xhtml-2-in-favour-of-html-5/</link>
		<comments>http://ryanroberts.co.uk/blog/2009/07/w3c-to-drop-xhtml-2-in-favour-of-html-5/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 11:15:15 +0000</pubDate>
		<dc:creator>Ryan Roberts</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[markup]]></category>
		<category><![CDATA[w3c]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[xhtml2]]></category>

		<guid isPermaLink="false">http://ryanroberts.co.uk/blog/?p=132</guid>
		<description><![CDATA[XHTML 2 Working Group Expected to Stop Work End of 2009, W3C to Increase Resources on HTML 5
The W3C announced yesterday that they plan to allow the XHTML 2 Working Group charter to expire and put the remaining available resources into developing HTML&#160;5. 
It also appears the W3C plan to leave XHTML 1.* where it [...]]]></description>
			<content:encoded><![CDATA[<p><q cite="http://www.w3.org/News/2009#item119">XHTML 2 Working Group Expected to Stop Work End of 2009, W3C to Increase Resources on HTML 5</q></p>
<p>The W3C announced yesterday that they plan to allow the <a href="http://www.w3.org/News/2009#item119">XHTML 2 Working Group charter to expire</a> and put the remaining available resources into developing HTML&nbsp;5. </p>
<p>It also appears the W3C plan to leave XHTML 1.* where it is and end <a href="http://www.w3.org/2009/06/xhtml-faq.html#deli">further development, again in favour of HTML&nbsp;5</a>:</p>
<blockquote><p>The expectation is that HTML 5 will define the next generation XML serialization of HTML. Therefore, W3C does not at this time plan to allocate resources to the maintenance of XHTML 1.1, XHTML 1.1 Basic, and XHTML Print beyond the current round of revisions. W3C does not plan to revise the XHTML 1.0&nbsp;Recommendation.</p></blockquote>
<p>Unsurprisingly for some I am pleased to see this happen. Thanks to lack of support from Microsoft&#8217;s Internet Explorer proper <a href="http://www.webdevout.net/articles/beware-of-xhtml">XHTML was little more than a myth</a>. Furthmore XHTML 2 was never really going anywhere, <a href="http://en.wikipedia.org/wiki/Comparison_of_layout_engines_%28HTML_5%29#Web_Applications_1.0">HTML 5 is already being implemented by browser vendors</a> and <a href="http://html5doctor.com/">some developers have started using it</a> in their&nbsp;work.</p>
]]></content:encoded>
			<wfw:commentRss>http://ryanroberts.co.uk/blog/2009/07/w3c-to-drop-xhtml-2-in-favour-of-html-5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick Tip: Combine IE6 &amp; IE7 style sheets into one CSS file</title>
		<link>http://ryanroberts.co.uk/blog/2009/06/combine-ie6-and-ie7-style-sheets-into-one-css-file/</link>
		<comments>http://ryanroberts.co.uk/blog/2009/06/combine-ie6-and-ie7-style-sheets-into-one-css-file/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 14:22:16 +0000</pubDate>
		<dc:creator>Ryan Roberts</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[internet exploder]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://ryanroberts.co.uk/blog/?p=88</guid>
		<description><![CDATA[The star filter filter hacks and conditional comment are both well known methods of targeting Internet Exploder 6 and 7, and by using these together in one style sheet served from an IE conditional comment you can cut down on HTTP requests, focus your work into one file and help improve your&#160;productivity.
Start off with a [...]]]></description>
			<content:encoded><![CDATA[<p>The <a rel="external" href="http://thatnorwegianguy.wordpress.com/2007/03/20/ie7-css-filter-hack/">star filter filter hacks</a> and <a rel="external" href="http://www.quirksmode.org/css/condcom.html">conditional comment</a> are both well known methods of targeting Internet Exploder 6 and 7, and by using these together in one style sheet served from an IE conditional comment you can cut down on HTTP requests, focus your work into one file and help improve your&nbsp;productivity.</p>
<p>Start off with a CC targeting Internet Explorer 7 and&nbsp;lower;</p>
<pre><code>&lt;!--[if lte IE 7]&gt;
	&lt;link href="ie.css" type="text/css" rel="stylesheet" media="screen"/&gt;
&lt;![endif]--&gt;</code></pre>
<p>Now in this style sheet you&#8217;ll want to use the above mentioned filters to target both IE 6 and 7, here&#8217;s an&nbsp;example;</p>
<pre><code>/* IE6 styling */
* html #content {
	width: 300px;
	}

/* IE7 styling */
*+html #content {
	width: 200px;
	}</code></pre>
<p>But what about IE8? Well so far I don&#8217;t know of any hacks to specifically target version 8. This isn&#8217;t anywhere near as bad as the previous versions when it comes to bugs but I have come across some over the past few weeks. Let me know if you find anything or if you work out a better solution to&nbsp;above.</p>
]]></content:encoded>
			<wfw:commentRss>http://ryanroberts.co.uk/blog/2009/06/combine-ie6-and-ie7-style-sheets-into-one-css-file/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>The office</title>
		<link>http://ryanroberts.co.uk/blog/2009/06/the-office/</link>
		<comments>http://ryanroberts.co.uk/blog/2009/06/the-office/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 12:12:25 +0000</pubDate>
		<dc:creator>Ryan Roberts</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://ryanroberts.co.uk/blog/?p=82</guid>
		<description><![CDATA[I&#8217;ve just moved in to my new office, what do you think?&#160;;)

 

]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just moved in to my new office, what do you think?&nbsp;;)</p>
<p><span id="more-82"></span><br />
<img src="http://farm4.static.flickr.com/3376/3585414004_fbb1354f64_o.jpg" alt="Desk Area" width="436" /> </p>
<p><img src="http://farm4.static.flickr.com/3415/3585419398_aa1e78399f_o.jpg" alt="The office" width="436" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ryanroberts.co.uk/blog/2009/06/the-office/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Fun with CSS Border Radius</title>
		<link>http://ryanroberts.co.uk/blog/2009/05/fun-with-css-border-radius/</link>
		<comments>http://ryanroberts.co.uk/blog/2009/05/fun-with-css-border-radius/#comments</comments>
		<pubDate>Fri, 15 May 2009 12:43:19 +0000</pubDate>
		<dc:creator>Ryan Roberts</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Experiments]]></category>
		<category><![CDATA[advanced css]]></category>
		<category><![CDATA[css experiments]]></category>

		<guid isPermaLink="false">http://ryanroberts.co.uk/blog/?p=54</guid>
		<description><![CDATA[
Here&#8217;s a CSS experiment I was playing with and posted on twitter recently, with no blog at the time there wasn&#8217;t much chance for an explanation or discussion so I thought I&#8217;d give it its own place here&#160;:)

→ View the CSS Border Radius&#160;experiments.
As you should see the demonstration uses CSS borders, border radius, positioning and [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://imgur.com/ctdeo.jpg" alt="CSS border radius face Preview" /></p>
<p>Here&#8217;s a CSS experiment I was playing with and posted on twitter recently, with no blog at the time there wasn&#8217;t much chance for an explanation or discussion so I thought I&#8217;d give it its own place here&nbsp;:)</p>
<p><span id="more-54"></span></p>
<p>→ <a href="http://ryanroberts.co.uk/_dev/experiments/css-border-faces/">View the CSS Border Radius&nbsp;experiments</a>.</p>
<p>As you should see the demonstration uses CSS borders, border radius, positioning and a few other CSS techniques to get an entirely useless smiley face complete with animations (sort of). Actually I don&#8217;t think it&#8217;s entirely useless, sometimes I like to breaking away from looking at things in a web design perspective and simply exploring the technology available whether the end result is useful of&nbsp;not.</p>
<p>Check out the source code and you&#8217;ll see the html is nothing special, the good stuff happens in the CSS. It&#8217;s best viewed with Safari, Firefox 3 or Google Chrome although Internet Exploder and Opera are worth a&nbsp;look.</p>
<p>What do you think — other than round corners could there be other uses for border&nbsp;radius?</p>
]]></content:encoded>
			<wfw:commentRss>http://ryanroberts.co.uk/blog/2009/05/fun-with-css-border-radius/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
