<?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: Cross-browser rounded corners! Works on IE but, but not on Opera!</title>
	<atom:link href="/2010/02/15/cross-browser-rounded-corners-works-on-ie-but-but-not-on-opera/feed/" rel="self" type="application/rss+xml" />
	<link>/2010/02/15/cross-browser-rounded-corners-works-on-ie-but-but-not-on-opera/</link>
	<description>on web development</description>
	<lastBuildDate>Fri, 26 Oct 2018 21:40:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.0.3</generator>
	<item>
		<title>By: Stoimen</title>
		<link>/2010/02/15/cross-browser-rounded-corners-works-on-ie-but-but-not-on-opera/comment-page-1/#comment-13175</link>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
		<pubDate>Wed, 23 Jun 2010 12:30:52 +0000</pubDate>
		<guid isPermaLink="false">/?p=1091#comment-13175</guid>
		<description><![CDATA[Many thanks!]]></description>
		<content:encoded><![CDATA[<p>Many thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex C</title>
		<link>/2010/02/15/cross-browser-rounded-corners-works-on-ie-but-but-not-on-opera/comment-page-1/#comment-13174</link>
		<dc:creator><![CDATA[Alex C]]></dc:creator>
		<pubDate>Wed, 23 Jun 2010 12:27:12 +0000</pubDate>
		<guid isPermaLink="false">/?p=1091#comment-13174</guid>
		<description><![CDATA[By the way, thanks for putting this great blog together. You have so many great articles.]]></description>
		<content:encoded><![CDATA[<p>By the way, thanks for putting this great blog together. You have so many great articles.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stoimen</title>
		<link>/2010/02/15/cross-browser-rounded-corners-works-on-ie-but-but-not-on-opera/comment-page-1/#comment-13173</link>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
		<pubDate>Wed, 23 Jun 2010 12:25:22 +0000</pubDate>
		<guid isPermaLink="false">/?p=1091#comment-13173</guid>
		<description><![CDATA[Some of the new browser versions support that syntax, however most of the users worldwide still use older version browsers. We&#039;ll see it someday in practice.]]></description>
		<content:encoded><![CDATA[<p>Some of the new browser versions support that syntax, however most of the users worldwide still use older version browsers. We&#8217;ll see it someday in practice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex C</title>
		<link>/2010/02/15/cross-browser-rounded-corners-works-on-ie-but-but-not-on-opera/comment-page-1/#comment-13172</link>
		<dc:creator><![CDATA[Alex C]]></dc:creator>
		<pubDate>Wed, 23 Jun 2010 12:18:41 +0000</pubDate>
		<guid isPermaLink="false">/?p=1091#comment-13172</guid>
		<description><![CDATA[Wouldn&#039;t it be wonderful if the other browsers adopted the same CSS3 syntax? Then those two lines would suffice.]]></description>
		<content:encoded><![CDATA[<p>Wouldn&#8217;t it be wonderful if the other browsers adopted the same CSS3 syntax? Then those two lines would suffice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stoimen</title>
		<link>/2010/02/15/cross-browser-rounded-corners-works-on-ie-but-but-not-on-opera/comment-page-1/#comment-13171</link>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
		<pubDate>Wed, 23 Jun 2010 11:41:57 +0000</pubDate>
		<guid isPermaLink="false">/?p=1091#comment-13171</guid>
		<description><![CDATA[The last two lines are CSS3, that&#039;s why newer versions of Opera support this syntax.]]></description>
		<content:encoded><![CDATA[<p>The last two lines are CSS3, that&#8217;s why newer versions of Opera support this syntax.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex C</title>
		<link>/2010/02/15/cross-browser-rounded-corners-works-on-ie-but-but-not-on-opera/comment-page-1/#comment-13167</link>
		<dc:creator><![CDATA[Alex C]]></dc:creator>
		<pubDate>Wed, 23 Jun 2010 00:44:39 +0000</pubDate>
		<guid isPermaLink="false">/?p=1091#comment-13167</guid>
		<description><![CDATA[I did some research for a new web site I&#039;m building and found that the latest versions of Opera supported rounded corners; here&#039;s code I used that supports just about all the browsers that have CSS3 capability (minus IE):
&lt;pre lang=&quot;css&quot;&gt;
    -moz-border-radius:0px 7px 7px 0px;
    -webkit-border-bottom-right-radius: 7px;
    -webkit-border-top-right-radius: 7px;
    -khtml-border-bottom-right-radius: 7px;
    -khtml-border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    border-top-right-radius: 7px;
&lt;/pre&gt;
Note the last two lines -- those are the ones for Opera. If you&#039;re going to do uniform corners all around, then the syntax is border-radius for Opera.]]></description>
		<content:encoded><![CDATA[<p>I did some research for a new web site I&#8217;m building and found that the latest versions of Opera supported rounded corners; here&#8217;s code I used that supports just about all the browsers that have CSS3 capability (minus IE):</p>
<pre lang="css">
    -moz-border-radius:0px 7px 7px 0px;
    -webkit-border-bottom-right-radius: 7px;
    -webkit-border-top-right-radius: 7px;
    -khtml-border-bottom-right-radius: 7px;
    -khtml-border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    border-top-right-radius: 7px;
</pre>
<p>Note the last two lines &#8212; those are the ones for Opera. If you&#8217;re going to do uniform corners all around, then the syntax is border-radius for Opera.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
