<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Web Design News</title>
	<atom:link href="http://top10designs.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://top10designs.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Fri, 06 Mar 2009 07:28:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='top10designs.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Web Design News</title>
		<link>http://top10designs.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://top10designs.wordpress.com/osd.xml" title="Web Design News" />
	<atom:link rel='hub' href='http://top10designs.wordpress.com/?pushpress=hub'/>
		<item>
		<title>CSS label 3 Tour: Border Radius</title>
		<link>http://top10designs.wordpress.com/2009/03/06/css-label-3-tour-border-radius/</link>
		<comments>http://top10designs.wordpress.com/2009/03/06/css-label-3-tour-border-radius/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 07:13:42 +0000</pubDate>
		<dc:creator>suparnap</dc:creator>
				<category><![CDATA[CSS Tutorial]]></category>
		<category><![CDATA[CSS design]]></category>
		<category><![CDATA[CSS3 Border Radius]]></category>

		<guid isPermaLink="false">http://top10designs.wordpress.com/?p=9</guid>
		<description><![CDATA[Border-radius allows you to create rounded corners with just CSS without the need for graphics or JavaScript. If you are not using it yet here&#8217;s an explanation. Rounded Corners Historically rounded corners were tricky to implement involving a background graphic or even JavaScript. Interface designers would issue a little sigh as designers littered designs with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=top10designs.wordpress.com&amp;blog=6528245&amp;post=9&amp;subd=top10designs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Border-radius allows you to create rounded corners with just CSS without the need for graphics or JavaScript. If you are not using it yet here&#8217;s an explanation.</p>
<p><strong>Rounded Corners</strong></p>
<p>Historically rounded corners were tricky to implement involving a background graphic or even JavaScript. Interface designers would issue a little sigh as designers littered designs with rounded corners. Well not any more!</p>
<p><strong>Corners for all</strong></p>
<p>Now you can create rounds corners easily using CSS. There is a bit of variance between browser vendors at the moment but I imagine eventually the syntax will standardise. To add rounded corners you just need:</p>
<h5 class="codeblock"><code><span style="color:#000000;"> <span style="color:#ff8000;"><span style="color:#808080;">/* Gecko browsers */</span><br />
</span><span style="color:#808000;">-moz-border-radius: 5px</span><span style="color:#007700;"><span style="color:#808000;">;</span><br />
</span><span style="color:#ff8000;"><span style="color:#808080;">/* Webkit browsers */</span><br />
</span><span style="color:#808000;">-webkit-border-radius: 5px</span><span style="color:#007700;"><span style="color:#808000;">; </span><br />
</span><span style="color:#ff8000;"><span style="color:#808080;">/* W3C syntax - likely to be standard so use for future proofing */</span><br />
</span><span style="color:#808000;">border-radius:10px; </span></span></code></h5>
<p><span style="color:#000000;"><span style="color:#808000;"><img class="alignnone size-full wp-image-17" title="csstutorial1" src="http://top10designs.files.wordpress.com/2009/03/csstutorial1.gif?w=500&#038;h=200" alt="csstutorial1" width="500" height="200" /><br />
</span></span></p>
<div class="codeblock">And that&#8217;s all there is to it. Firefox did have some problems aliasing the corners but this has been fixed now so you can enjoy crisp rounded corners with no effort.</div>
<div class="codeblock"><strong>More Control</strong></div>
<div class="codeblock">You can even specify which corners have border-radius applied to them. Again the syntax is slightly different between browsers so you&#8217;ll need to list both.</div>
<h5 class="codeblock"><code><span style="color:#000000;"><span style="color:#ff8000;"><span style="color:#808080;">/* Gecko browsers */</span><br />
</span><span style="color:#808000;">-moz-border-radius-topleft: 20px;<br />
-moz-border-radius-topright: 0;<br />
-moz-border-radius-bottomleft: 0;<br />
-moz-border-radius-bottomright: 20px</span><span style="color:#007700;"><span style="color:#808000;">;</span></p>
<p></span><span style="color:#ff8000;"><span style="color:#808080;">/* Webkit browsers */</span><br />
</span><span style="color:#808000;">-webkit-border-top-left-radius: 20px;<br />
-webkit-border-top-right-radius: 0;<br />
-webkit-border-bottom-left-radius: 0;<br />
-webkit-border-bottom-right-radius: 20px</span><span style="color:#007700;"><span style="color:#808000;">;</span></p>
<p></span><span style="color:#ff8000;"><span style="color:#808080;">/* W3C syntax */</span><br />
</span><span style="color:#808000;">border-top-left-radius: 20px;<br />
border-top-right-radius: 0;<br />
border-bottom-right-radius: 0;<br />
border-bottom-left-radius:  20px;</span></span></code></h5>
<div class="codeblock"><img class="alignnone size-full wp-image-11" title="differentcorner" src="http://top10designs.files.wordpress.com/2009/03/differentcorner.gif?w=500&#038;h=200" alt="differentcorner" width="500" height="200" /></div>
<div class="codeblock"><strong>VALIDATION:</strong></div>
<div class="codeblock">True &#8211; this won&#8217;t validate with CSS 2.1 validators simply becuase this isn&#8217;t CSS 2.1. If you are a validation obsessive then I suggest putting these rules in a separate CSS3 file. If you can&#8217;t handle having *any* non-validating code on your site then you&#8217;d better wait a bit longer.</div>
<div class="codeblock"><strong>Browser Support?</strong></div>
<div class="codeblock">
<p>Border-radius is supported in Firefox 2 &amp; 3, Safari 3 and related Gecko and Webkit browsers.</p>
<p>Internet Explorer 6 &amp; 7 and 8 (as far as I know) and Opera do not support rounded corners. Instead these users will see a regular corner.</p>
<p><a href="http://shapeshed.com/journal/css3_tour_border-radius/" target="_blank">source</a></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/top10designs.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/top10designs.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/top10designs.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/top10designs.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/top10designs.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/top10designs.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/top10designs.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/top10designs.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/top10designs.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/top10designs.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/top10designs.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/top10designs.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/top10designs.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/top10designs.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=top10designs.wordpress.com&amp;blog=6528245&amp;post=9&amp;subd=top10designs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://top10designs.wordpress.com/2009/03/06/css-label-3-tour-border-radius/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8a7aadc1627b52c434e755d3ecff2fe5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">suparnap</media:title>
		</media:content>

		<media:content url="http://top10designs.files.wordpress.com/2009/03/csstutorial1.gif" medium="image">
			<media:title type="html">csstutorial1</media:title>
		</media:content>

		<media:content url="http://top10designs.files.wordpress.com/2009/03/differentcorner.gif" medium="image">
			<media:title type="html">differentcorner</media:title>
		</media:content>
	</item>
		<item>
		<title>Review some DotNetNuke websites designed by Ray Creations</title>
		<link>http://top10designs.wordpress.com/2009/03/05/review-some-dotnetnuke-websites-designed-by-ray-creations/</link>
		<comments>http://top10designs.wordpress.com/2009/03/05/review-some-dotnetnuke-websites-designed-by-ray-creations/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 12:30:54 +0000</pubDate>
		<dc:creator>suparnap</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://top10designs.wordpress.com/?p=3</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=top10designs.wordpress.com&amp;blog=6528245&amp;post=3&amp;subd=top10designs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rayhosting.com/"><img class="alignnone size-full wp-image-4" title="rayhosting" src="http://top10designs.files.wordpress.com/2009/03/rayhosting.jpg?w=500" alt="rayhosting"   /></a></p>
<p><a href="http://www.raycreations.net/"><img class="alignnone size-full wp-image-6" title="raycreations" src="http://top10designs.files.wordpress.com/2009/03/raycreations.jpg?w=500" alt="raycreations"   /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/top10designs.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/top10designs.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/top10designs.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/top10designs.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/top10designs.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/top10designs.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/top10designs.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/top10designs.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/top10designs.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/top10designs.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/top10designs.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/top10designs.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/top10designs.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/top10designs.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=top10designs.wordpress.com&amp;blog=6528245&amp;post=3&amp;subd=top10designs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://top10designs.wordpress.com/2009/03/05/review-some-dotnetnuke-websites-designed-by-ray-creations/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8a7aadc1627b52c434e755d3ecff2fe5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">suparnap</media:title>
		</media:content>

		<media:content url="http://top10designs.files.wordpress.com/2009/03/rayhosting.jpg" medium="image">
			<media:title type="html">rayhosting</media:title>
		</media:content>

		<media:content url="http://top10designs.files.wordpress.com/2009/03/raycreations.jpg" medium="image">
			<media:title type="html">raycreations</media:title>
		</media:content>
	</item>
	</channel>
</rss>
