<?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>Shane&#039;s blog &#187; CSS</title>
	<atom:link href="http://blog.shamess.info/category/programming/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.shamess.info</link>
	<description>Personal blog of Shane Preece. Occaisional politics and tech minddump.</description>
	<lastBuildDate>Wed, 18 Jan 2012 10:28:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Chrome&#8217;s border radius CSS feature</title>
		<link>http://blog.shamess.info/2009/04/21/chromes-border-radius-css-feature/</link>
		<comments>http://blog.shamess.info/2009/04/21/chromes-border-radius-css-feature/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 15:17:27 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[rounded corners]]></category>

		<guid isPermaLink="false">http://blog.shamess.info/?p=622</guid>
		<description><![CDATA[Just a note on how Chrome handles it&#8217;s rounded corners. I found out about CSS3&#8242;s rounded corner support for Mozilla and Webkit browsers and happily started using it. Turns out though that Chrome currently doesn&#8217;t have the shorthand tag for &#8230; <a href="http://blog.shamess.info/2009/04/21/chromes-border-radius-css-feature/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Just a note on how Chrome handles it&#8217;s rounded corners.</p>
<p>I found out about CSS3&#8242;s <a href="http://www.css3.info/preview/rounded-border/">rounded corner support for Mozilla and Webkit browsers</a> and happily started using it. Turns out though that Chrome currently doesn&#8217;t have the shorthand tag for it like Mozilla does &#8211; I&#8217;m sure it&#8217;s something they&#8217;re working on though (or maybe even just forgot).</p>
<p>What I mean is that whilst you can do this:</p>
<pre>-moz-border-radius: 2px 2px 15px 15px;</pre>
<p>For the radius to be applied clockwise starting from top-left, you can&#8217;t do that for Webkit at the moment. So you have to write it out long hand like:</p>
<pre>-webkit-border-top-left-radius: 2px;
-webkit-border-top-right-radius: 2px;
-webkit-border-bottom-left-radius: 15px;
-webkit-border-bottom-right-radius: 15px;</pre>
<p>It&#8217;s a tad annoying, but at least Chrome support it, unlike <em>some</em> browsers.</p>
<p><strong>Update:</strong> Lots of people seem to be getting to this post via Google, but not staying for long. Comment with what you&#8217;re looking for, and I&#8217;ll update this post this better information (helping you, and other people that come along later). If you really want to say thanks, you could <a href="http://flattr.com/thing/132722/Chromes-border-radius-CSS-feature" target="_blank"><img title="Flattr this" src="http://api.flattr.com/button/flattr-badge-large.png" border="0" alt="Flattr this" /></a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shamess.info/2009/04/21/chromes-border-radius-css-feature/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
	</channel>
</rss>

