<?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: Mozilla Rounded Corners</title>
	<atom:link href="http://www.justise.com/2007/09/01/mozilla-rounded-corners/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.justise.com/2007/09/01/mozilla-rounded-corners/</link>
	<description>Programming - Development</description>
	<lastBuildDate>Tue, 27 Jul 2010 05:58:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Kris Gray</title>
		<link>http://www.justise.com/2007/09/01/mozilla-rounded-corners/comment-page-1/#comment-3241</link>
		<dc:creator>Kris Gray</dc:creator>
		<pubDate>Mon, 08 Dec 2008 21:56:15 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeltcoder.net/2007/09/01/mozilla-rounded-corners/#comment-3241</guid>
		<description>These solutions all utilize an early implementation of the border-radius property in the webkit or mozilla browsers. IE 6 doesn&#039;t support such a property in any way, and it appears IE 8 isn&#039;t even going to try as well, so your shafted.</description>
		<content:encoded><![CDATA[<p>These solutions all utilize an early implementation of the border-radius property in the webkit or mozilla browsers. IE 6 doesn&#8217;t support such a property in any way, and it appears IE 8 isn&#8217;t even going to try as well, so your shafted.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arvind</title>
		<link>http://www.justise.com/2007/09/01/mozilla-rounded-corners/comment-page-1/#comment-3180</link>
		<dc:creator>Arvind</dc:creator>
		<pubDate>Thu, 04 Dec 2008 06:36:56 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeltcoder.net/2007/09/01/mozilla-rounded-corners/#comment-3180</guid>
		<description>Thanks
But what about IE6
IE6 not picking up</description>
		<content:encoded><![CDATA[<p>Thanks<br />
But what about IE6<br />
IE6 not picking up</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kris Gray</title>
		<link>http://www.justise.com/2007/09/01/mozilla-rounded-corners/comment-page-1/#comment-1692</link>
		<dc:creator>Kris Gray</dc:creator>
		<pubDate>Tue, 12 Aug 2008 05:28:08 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeltcoder.net/2007/09/01/mozilla-rounded-corners/#comment-1692</guid>
		<description>Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kai Hennig</title>
		<link>http://www.justise.com/2007/09/01/mozilla-rounded-corners/comment-page-1/#comment-1691</link>
		<dc:creator>Kai Hennig</dc:creator>
		<pubDate>Mon, 11 Aug 2008 11:32:00 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeltcoder.net/2007/09/01/mozilla-rounded-corners/#comment-1691</guid>
		<description>For Safari use
-webkit-border-radius: 10px;
or
-webkit-border-top-right-radius: 10px;
-ebkit-border-top-left-radius: 10px;
-webkit-border-bottom-right-radius: 10px;
-webkit-border-bottom-left-radius: 10px;</description>
		<content:encoded><![CDATA[<p>For Safari use<br />
-webkit-border-radius: 10px;<br />
or<br />
-webkit-border-top-right-radius: 10px;<br />
-ebkit-border-top-left-radius: 10px;<br />
-webkit-border-bottom-right-radius: 10px;<br />
-webkit-border-bottom-left-radius: 10px;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justise</title>
		<link>http://www.justise.com/2007/09/01/mozilla-rounded-corners/comment-page-1/#comment-76</link>
		<dc:creator>Justise</dc:creator>
		<pubDate>Mon, 17 Sep 2007 20:10:49 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeltcoder.net/2007/09/01/mozilla-rounded-corners/#comment-76</guid>
		<description>Well that html didn&#039;t show up at all, just imagine lots of divs around blah.</description>
		<content:encoded><![CDATA[<p>Well that html didn&#8217;t show up at all, just imagine lots of divs around blah.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justise</title>
		<link>http://www.justise.com/2007/09/01/mozilla-rounded-corners/comment-page-1/#comment-75</link>
		<dc:creator>Justise</dc:creator>
		<pubDate>Mon, 17 Sep 2007 20:10:24 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeltcoder.net/2007/09/01/mozilla-rounded-corners/#comment-75</guid>
		<description>Its certainly possible to do a rounded corners solution that works in all browsers. The trade-off is either more markup (or script) or less functionality.

So I could do &lt;div id=&#039;leftcorner&#039;&gt;&lt;div id=&#039;rightcorner&#039;&gt;&lt;div id=&#039;bottomleftcorner&#039;&gt;&lt;div id=&#039;bottomrightcorner&#039;&gt;blah&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;

or
Round(&#039;div1&#039;);
Round(&#039;div2&#039;);

but what we were going for in our project is simple, we&#039;ve got the crazy html, but we want small simple and will live with what effects we can get from that.</description>
		<content:encoded><![CDATA[<p>Its certainly possible to do a rounded corners solution that works in all browsers. The trade-off is either more markup (or script) or less functionality.</p>
<p>So I could do
<div id='leftcorner'>
<div id='rightcorner'>
<div id='bottomleftcorner'>
<div id='bottomrightcorner'>blah</div>
</div>
</div>
</div>
<p>or<br />
Round(&#8216;div1&#8242;);<br />
Round(&#8216;div2&#8242;);</p>
<p>but what we were going for in our project is simple, we&#8217;ve got the crazy html, but we want small simple and will live with what effects we can get from that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel WECK</title>
		<link>http://www.justise.com/2007/09/01/mozilla-rounded-corners/comment-page-1/#comment-74</link>
		<dc:creator>Daniel WECK</dc:creator>
		<pubDate>Mon, 17 Sep 2007 19:27:45 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeltcoder.net/2007/09/01/mozilla-rounded-corners/#comment-74</guid>
		<description>If you don&#039;t mind using JavaScript, then there&#039;s NiftyCube:
http://www.html.it/articoli/niftycube/index.html</description>
		<content:encoded><![CDATA[<p>If you don&#8217;t mind using JavaScript, then there&#8217;s NiftyCube:<br />
<a href="http://www.html.it/articoli/niftycube/index.html" rel="nofollow">http://www.html.it/articoli/niftycube/index.html</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

