<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: border-radius: Safari vs Mozilla</title>
	<atom:link href="http://www.broken-links.com/2007/06/19/border-radius-safari-vs-mozilla/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.broken-links.com/2007/06/19/border-radius-safari-vs-mozilla/</link>
	<description>Thoughts on web development and technologies by Peter Gasston</description>
	<lastBuildDate>Mon, 06 Feb 2012 13:50:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Type-Style</title>
		<link>http://www.broken-links.com/2007/06/19/border-radius-safari-vs-mozilla/#comment-36791</link>
		<dc:creator>Type-Style</dc:creator>
		<pubDate>Wed, 17 Mar 2010 15:55:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.broken-links.com/2007/06/19/border-radius-safari-vs-mozilla/#comment-36791</guid>
		<description>Once again thanks!
Yep, that makes thanks and is clearer.
So oval curves are possible.</description>
		<content:encoded><![CDATA[<p>Once again thanks!<br />
Yep, that makes thanks and is clearer.<br />
So oval curves are possible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://www.broken-links.com/2007/06/19/border-radius-safari-vs-mozilla/#comment-36774</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Tue, 16 Mar 2010 23:36:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.broken-links.com/2007/06/19/border-radius-safari-vs-mozilla/#comment-36774</guid>
		<description>So, each border radius takes two values: x &amp; y. When you use only a single value, it assumes x &amp; y are the same. So:

-moz-border-radius-topleft: 10px
=
-moz-border-radius-topleft: 10px 10px

That would make a circular radius. But you could also have an oval radius by using two different values:

-moz-border-radius-topleft: 10px 5px

But to not have confusion in the shorthand radius, you separate those values with the forward slash; for example, if you wanted all of your corners to have that radius, you&#039;d use:

-moz-border-radius: 10px / 5px

Is that clearer?</description>
		<content:encoded><![CDATA[<p>So, each border radius takes two values: x &amp; y. When you use only a single value, it assumes x &amp; y are the same. So:</p>
<p>–moz-border-radius-topleft: 10px<br />
=<br />
–moz-border-radius-topleft: 10px 10px</p>
<p>That would make a circular radius. But you could also have an oval radius by using two different values:</p>
<p>–moz-border-radius-topleft: 10px 5px</p>
<p>But to not have confusion in the shorthand radius, you separate those values with the forward slash; for example, if you wanted all of your corners to have that radius, you’d use:</p>
<p>–moz-border-radius: 10px / 5px</p>
<p>Is that clearer?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Type-Style</title>
		<link>http://www.broken-links.com/2007/06/19/border-radius-safari-vs-mozilla/#comment-36764</link>
		<dc:creator>Type-Style</dc:creator>
		<pubDate>Tue, 16 Mar 2010 16:16:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.broken-links.com/2007/06/19/border-radius-safari-vs-mozilla/#comment-36764</guid>
		<description>Yes it does.
But where is the difference between those two lines?
I did´t get that one.

Am I am able to define a small radius at the beginning and a lager at the End with the second one?</description>
		<content:encoded><![CDATA[<p>Yes it does.<br />
But where is the difference between those two lines?<br />
I did´t get that one.</p>
<p>Am I am able to define a small radius at the beginning and a lager at the End with the second one?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://www.broken-links.com/2007/06/19/border-radius-safari-vs-mozilla/#comment-36642</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Fri, 05 Mar 2010 17:03:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.broken-links.com/2007/06/19/border-radius-safari-vs-mozilla/#comment-36642</guid>
		<description>It wouldn&#039;t work; as your example uses the same value pairs, you could either use:

&lt;code&gt;-moz-border-radius: 5px 10px 10px 20px;&lt;/code&gt;

or:

&lt;code&gt;-moz-border-radius: 5px 10px 10px 20px / 5px 10px 10px 20px;&lt;/code&gt;

Both should work.</description>
		<content:encoded><![CDATA[<p>It wouldn’t work; as your example uses the same value pairs, you could either use:</p>
<p><code>–moz-border-radius: 5px 10px 10px 20px;</code></p>
<p>or:</p>
<p><code>–moz-border-radius: 5px 10px 10px 20px / 5px 10px 10px 20px;</code></p>
<p>Both should work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Type-Style</title>
		<link>http://www.broken-links.com/2007/06/19/border-radius-safari-vs-mozilla/#comment-36641</link>
		<dc:creator>Type-Style</dc:creator>
		<pubDate>Fri, 05 Mar 2010 16:53:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.broken-links.com/2007/06/19/border-radius-safari-vs-mozilla/#comment-36641</guid>
		<description>-moz-border-radius: 5px 5px 10px 10px 10px 10px 20px 20px;
doesn´t work for me!</description>
		<content:encoded><![CDATA[<p>–moz-border-radius: 5px 5px 10px 10px 10px 10px 20px 20px;<br />
doesn´t work for me!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

