<?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>PHP-Princess.net &#187; CSS</title>
	<atom:link href="http://php-princess.net/category/scriptworld/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://php-princess.net</link>
	<description></description>
	<lastBuildDate>Thu, 29 Mar 2012 15:50:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<script type="text/javascript">
if (typeof Meebo == "undefined") {
Meebo=function(){(Meebo._=Meebo._||[]).push(arguments)};
(function(q){

	var args = arguments;
	if (!document.body) { return setTimeout(function(){ args.callee.apply(this, args) }, 100); }
	var d=document, b=d.body, m=b.insertBefore(d.createElement('div'), b.firstChild); s=d.createElement('script');
	m.id='meebo'; m.style.display='none'; m.innerHTML='<iframe id="meebo-iframe"></iframe>';
	s.src='http'+(q.https?'s':'')+'://'+(q.stage?'stage-':'')+'cim.meebo.com/cim/cim.php?network='+q.network;
	b.insertBefore(s, b.firstChild);

})({network:'phpprincessnet_ba02xu'});	}</script>	<item>
		<title>CSS 3: Substring Matching Attribute Selectors</title>
		<link>http://php-princess.net/2007/03/16/css-3-substring-matching-attribute-selectors/</link>
		<comments>http://php-princess.net/2007/03/16/css-3-substring-matching-attribute-selectors/#comments</comments>
		<pubDate>Sat, 17 Mar 2007 04:37:55 +0000</pubDate>
		<dc:creator>daynah</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://php-princess.net/2007/03/16/css-3-substring-matching-attribute-selectors/</guid>
		<description><![CDATA[I was reading up on CSS 3&#8242;s Substring matching attribute selectors and discovered a fun way to reference anchor links! Web links can be a variety of files. PDF, DOC, and HTML are some of the familiar ones. I was wondering if we could put a small icon to denote what type of file is [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://php-princess.net/wp-content/uploads/css-icon.png" alt="css-icon" title="css-icon" class="alignright size-full wp-image-1774" />I was reading up on <a href="http://www.w3.org/TR/css3-selectors/#attribute-representation">CSS 3&#8242;s Substring matching attribute selectors</a> and discovered a fun way to reference anchor links!</p>
<p>Web links can be a variety of files.  PDF, DOC, and HTML are some of the familiar ones.  I was wondering if we could put a small icon to denote what type of file is being downloaded, and with CSS3, it&#8217;s quite possible.</p>
<p>Create an HTML file.  Between the &lt;head&gt; tags, put</p>
<pre class="brush:css">
&lt;style&gt;
body {
  font-size: .9em; font-weight: bold;
}
a { color: blue; line-height: 1.5em; }
a[href$=".html"] {
   padding-left:20px; background-image:url(html.gif);
   background-repeat: no-repeat;
}
a[href$=".pdf"] {
   padding-left:20px; background-image:url(pdf.gif);
   background-repeat: no-repeat;
}
a[href$=".doc"] {
   padding-left:20px; background-image:url(msword.gif);
   background-repeat: no-repeat;
}
&lt;/style&gt;</pre>
<p>and between the &lt;body&gt; tags, put:</p>
<pre class="brush:html">&lt;ul&gt;
&lt;li&gt;&lt;a href="myfile.html"&gt;My HTML File&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="myfile.pdf"&gt;My PDF File&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="myfile.doc"&gt;My Word Doc File&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://php-princess.net"&gt;Any Link&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</pre>
<p>Save the file as mytest.html (and download these three images as well &#8212; <img src="http://php-princess.net/wp-content/uploads/msword.gif" alt="MS Word" /> <img src="http://php-princess.net/wp-content/uploads/pdf.gif" alt="PDF" /> <img src="http://php-princess.net/wp-content/uploads/html.gif" alt="HTML" />) and open it up in Firefox 2.0.  You will then see something that looks like this:</p>
<p><img src="http://php-princess.net/wp-content/uploads/css3-links.jpg" alt="CSS 3 Links" /><br />
Isn&#8217;t that great?  The padding attribute moves the link 20px to the right.  And the background-repeat attribute makes sure that image doesn&#8217;t repeat. So when I link a PDF file on my website, an image of a PDF file automatically shows next to the link.  What a time-saver. :)  The only drawback to this is that CSS3 isn&#8217;t fully implemented in all of today&#8217;s browser.  It seems that Firefox 2.0 is ahead in the game.  MSIE 7.0 and browsers below do not render CSS3 correctly.  But it is a nice tip.  Hopefully the next generation of browsers will render CSS3 the way it&#8217;s suppose to.</p>
<p><map name='google_ad_map_451_5ca5e442dc272ca0'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/451?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_451_5ca5e442dc272ca0' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=451&amp;url= http%3A%2F%2Fphp-princess.net%2F2007%2F03%2F16%2Fcss-3-substring-matching-attribute-selectors%2F' /></p><div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fphp-princess.net%2F2007%2F03%2F16%2Fcss-3-substring-matching-attribute-selectors%2F&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><img style='display:none' id="post-451-blankimage" onload="Meebo('discoverSharable', {element: ((this.parentNode.className.match('post')) ? this.parentNode : this.parentNode.parentNode) ,url:'http://php-princess.net/2007/03/16/css-3-substring-matching-attribute-selectors/',title:'CSS 3: Substring Matching Attribute Selectors',tweet:'I was reading up on CSS 3&#8242;s Substring matching attribute selectors and discovered a fun way to',description:'I was reading up on CSS 3&#8242;s Substring matching attribute selectors and discovered a fun way to'})"><script type='text/javascript'>document.getElementById("post-451-blankimage").onload();</script><img src="http://php-princess.net/?ak_action=api_record_view&id=451&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://php-princess.net/2007/03/16/css-3-substring-matching-attribute-selectors/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CSS Keyboard</title>
		<link>http://php-princess.net/2005/09/19/css-keyboard/</link>
		<comments>http://php-princess.net/2005/09/19/css-keyboard/#comments</comments>
		<pubDate>Tue, 20 Sep 2005 00:51:28 +0000</pubDate>
		<dc:creator>daynah</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://daynah.php-princess.net/?p=377</guid>
		<description><![CDATA[How cute, a keyboard made entirely in CSS! That&#8217;s a Chris Hester creation!]]></description>
			<content:encoded><![CDATA[<p>How cute, <a href="http://www.designdetector.com/tips/keyboard.php">a keyboard made entirely in CSS</a>!  That&#8217;s a <a href="http://www.designdetector.com/archives/05/03/KeyboardDemo.php">Chris Hester</a> creation!</p>
<p><map name='google_ad_map_377_5ca5e442dc272ca0'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/377?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_377_5ca5e442dc272ca0' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=377&amp;url= http%3A%2F%2Fphp-princess.net%2F2005%2F09%2F19%2Fcss-keyboard%2F' /></p><div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fphp-princess.net%2F2005%2F09%2F19%2Fcss-keyboard%2F&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><img style='display:none' id="post-377-blankimage" onload="Meebo('discoverSharable', {element: ((this.parentNode.className.match('post')) ? this.parentNode : this.parentNode.parentNode) ,url:'http://php-princess.net/2005/09/19/css-keyboard/',title:'CSS Keyboard',tweet:'How cute, a keyboard made entirely in CSS!  That&#8217;s a Chris Hester creation!    ',description:'How cute, a keyboard made entirely in CSS!  That&#8217;s a Chris Hester creation!    '})"><script type='text/javascript'>document.getElementById("post-377-blankimage").onload();</script><img src="http://php-princess.net/?ak_action=api_record_view&id=377&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://php-princess.net/2005/09/19/css-keyboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Gradients</title>
		<link>http://php-princess.net/2005/09/19/css-gradients/</link>
		<comments>http://php-princess.net/2005/09/19/css-gradients/#comments</comments>
		<pubDate>Tue, 20 Sep 2005 00:47:03 +0000</pubDate>
		<dc:creator>daynah</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Daily Ramblings]]></category>

		<guid isPermaLink="false">http://daynah.php-princess.net/?p=376</guid>
		<description><![CDATA[Wow, you can create seamless gradients in CSS! It&#8217;s just a lot of code though. :D Here&#8217;s the full article on it.]]></description>
			<content:encoded><![CDATA[<p>Wow, you can create seamless <a href="http://www.designdetector.com/demos/css-gradients-demo-1.php">gradients in CSS</a>!  It&#8217;s just a lot of code though. :D  <a href="http://www.designdetector.com/2005/09/css-gradients-demo.php?rd=1744638680#c5">Here&#8217;s the full article</a> on it.</p>
<p><map name='google_ad_map_376_5ca5e442dc272ca0'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/376?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_376_5ca5e442dc272ca0' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=376&amp;url= http%3A%2F%2Fphp-princess.net%2F2005%2F09%2F19%2Fcss-gradients%2F' /></p><div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fphp-princess.net%2F2005%2F09%2F19%2Fcss-gradients%2F&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><img style='display:none' id="post-376-blankimage" onload="Meebo('discoverSharable', {element: ((this.parentNode.className.match('post')) ? this.parentNode : this.parentNode.parentNode) ,url:'http://php-princess.net/2005/09/19/css-gradients/',title:'CSS Gradients',tweet:'Wow, you can create seamless gradients in CSS!  It&#8217;s just a lot of code though. :D  Here&#8217',description:'Wow, you can create seamless gradients in CSS!  It&#8217;s just a lot of code though. :D  Here&#8217'})"><script type='text/javascript'>document.getElementById("post-376-blankimage").onload();</script><img src="http://php-princess.net/?ak_action=api_record_view&id=376&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://php-princess.net/2005/09/19/css-gradients/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Templates</title>
		<link>http://php-princess.net/2005/08/04/css-templates/</link>
		<comments>http://php-princess.net/2005/08/04/css-templates/#comments</comments>
		<pubDate>Fri, 05 Aug 2005 00:28:03 +0000</pubDate>
		<dc:creator>daynah</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://daynah.php-princess.net/?p=356</guid>
		<description><![CDATA[Here are some nice CSS templates that are licensed under a Creative Commons License. Thanks for the link, Dodo!]]></description>
			<content:encoded><![CDATA[<p>Here are some <a href="http://intensivstation.ch/en/templates/templates.html">nice CSS templates</a> that are licensed under a Creative Commons License.  Thanks for the link, <a href="http://regretless.com">Dodo</a>!</p>
<p><map name='google_ad_map_356_5ca5e442dc272ca0'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/356?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_356_5ca5e442dc272ca0' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=356&amp;url= http%3A%2F%2Fphp-princess.net%2F2005%2F08%2F04%2Fcss-templates%2F' /></p><div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fphp-princess.net%2F2005%2F08%2F04%2Fcss-templates%2F&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><img style='display:none' id="post-356-blankimage" onload="Meebo('discoverSharable', {element: ((this.parentNode.className.match('post')) ? this.parentNode : this.parentNode.parentNode) ,url:'http://php-princess.net/2005/08/04/css-templates/',title:'CSS Templates',tweet:'Here are some nice CSS templates that are licensed under a Creative Commons License.  Thanks for the',description:'Here are some nice CSS templates that are licensed under a Creative Commons License.  Thanks for the'})"><script type='text/javascript'>document.getElementById("post-356-blankimage").onload();</script><img src="http://php-princess.net/?ak_action=api_record_view&id=356&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://php-princess.net/2005/08/04/css-templates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Folder Tree</title>
		<link>http://php-princess.net/2005/07/13/css-folder-tree/</link>
		<comments>http://php-princess.net/2005/07/13/css-folder-tree/#comments</comments>
		<pubDate>Wed, 13 Jul 2005 16:37:58 +0000</pubDate>
		<dc:creator>daynah</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://daynah.php-princess.net/?p=349</guid>
		<description><![CDATA[I really like how Seamus created this folder tree using only css, a few images, and a bulleted list. Too bad MSIE 6.0 doesn&#8217;t support CSS2. I wonder if MSIE 7.0 will&#8230;]]></description>
			<content:encoded><![CDATA[<p>I really like how Seamus created this <a href="http://moronicbajebus.com/playground/cssplay/explorer-list/">folder tree</a> using only css, a few images, and a bulleted list.  Too bad MSIE 6.0 doesn&#8217;t support CSS2.  I wonder if MSIE 7.0 will&#8230;</p>
<p><map name='google_ad_map_349_5ca5e442dc272ca0'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/349?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_349_5ca5e442dc272ca0' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=349&amp;url= http%3A%2F%2Fphp-princess.net%2F2005%2F07%2F13%2Fcss-folder-tree%2F' /></p><div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fphp-princess.net%2F2005%2F07%2F13%2Fcss-folder-tree%2F&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><img style='display:none' id="post-349-blankimage" onload="Meebo('discoverSharable', {element: ((this.parentNode.className.match('post')) ? this.parentNode : this.parentNode.parentNode) ,url:'http://php-princess.net/2005/07/13/css-folder-tree/',title:'CSS Folder Tree',tweet:'I really like how Seamus created this folder tree using only css, a few images, and a bulleted list.',description:'I really like how Seamus created this folder tree using only css, a few images, and a bulleted list.'})"><script type='text/javascript'>document.getElementById("post-349-blankimage").onload();</script><img src="http://php-princess.net/?ak_action=api_record_view&id=349&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://php-princess.net/2005/07/13/css-folder-tree/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>HTML and CSS Table Border Style Wizard</title>
		<link>http://php-princess.net/2005/05/26/html-and-css-table-border-style-wizard/</link>
		<comments>http://php-princess.net/2005/05/26/html-and-css-table-border-style-wizard/#comments</comments>
		<pubDate>Thu, 26 May 2005 23:12:33 +0000</pubDate>
		<dc:creator>daynah</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Links and Resources]]></category>

		<guid isPermaLink="false">http://daynah.php-princess.net/?p=328</guid>
		<description><![CDATA[Here&#8217;s a great HTML and CSS Table Border Style Wizard you can use.]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a great <a href="http://www.somacon.com/p141.php">HTML and CSS Table Border Style Wizard</a> you can use. </p>
<p><map name='google_ad_map_328_5ca5e442dc272ca0'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/328?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_328_5ca5e442dc272ca0' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=328&amp;url= http%3A%2F%2Fphp-princess.net%2F2005%2F05%2F26%2Fhtml-and-css-table-border-style-wizard%2F' /></p><div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fphp-princess.net%2F2005%2F05%2F26%2Fhtml-and-css-table-border-style-wizard%2F&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><img style='display:none' id="post-328-blankimage" onload="Meebo('discoverSharable', {element: ((this.parentNode.className.match('post')) ? this.parentNode : this.parentNode.parentNode) ,url:'http://php-princess.net/2005/05/26/html-and-css-table-border-style-wizard/',title:'HTML and CSS Table Border Style Wizard',tweet:'Here&#8217;s a great HTML and CSS Table Border Style Wizard you can use.     ',description:'Here&#8217;s a great HTML and CSS Table Border Style Wizard you can use.     '})"><script type='text/javascript'>document.getElementById("post-328-blankimage").onload();</script><img src="http://php-princess.net/?ak_action=api_record_view&id=328&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://php-princess.net/2005/05/26/html-and-css-table-border-style-wizard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Cheat Sheet</title>
		<link>http://php-princess.net/2005/05/04/css-cheat-sheet/</link>
		<comments>http://php-princess.net/2005/05/04/css-cheat-sheet/#comments</comments>
		<pubDate>Thu, 05 May 2005 00:03:36 +0000</pubDate>
		<dc:creator>daynah</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://daynah.php-princess.net/?p=304</guid>
		<description><![CDATA[How nice, a CSS Cheat Sheet! I printed myself a copy. :)]]></description>
			<content:encoded><![CDATA[<p>How nice, a <a href="http://www.ilovejackdaniels.com/css/css-cheat-sheet/">CSS Cheat Sheet</a>!  I printed myself a copy. :)</p>
<p><map name='google_ad_map_304_5ca5e442dc272ca0'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/304?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_304_5ca5e442dc272ca0' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=304&amp;url= http%3A%2F%2Fphp-princess.net%2F2005%2F05%2F04%2Fcss-cheat-sheet%2F' /></p><div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fphp-princess.net%2F2005%2F05%2F04%2Fcss-cheat-sheet%2F&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><img style='display:none' id="post-304-blankimage" onload="Meebo('discoverSharable', {element: ((this.parentNode.className.match('post')) ? this.parentNode : this.parentNode.parentNode) ,url:'http://php-princess.net/2005/05/04/css-cheat-sheet/',title:'CSS Cheat Sheet',tweet:'How nice, a CSS Cheat Sheet!  I printed myself a copy. :)    ',description:'How nice, a CSS Cheat Sheet!  I printed myself a copy. :)    '})"><script type='text/javascript'>document.getElementById("post-304-blankimage").onload();</script><img src="http://php-princess.net/?ak_action=api_record_view&id=304&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://php-princess.net/2005/05/04/css-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>CSS Rounded Corners Generator</title>
		<link>http://php-princess.net/2005/03/30/css-rounded-corners-generator/</link>
		<comments>http://php-princess.net/2005/03/30/css-rounded-corners-generator/#comments</comments>
		<pubDate>Wed, 30 Mar 2005 17:54:31 +0000</pubDate>
		<dc:creator>daynah</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Daily Ramblings]]></category>

		<guid isPermaLink="false">http://daynah.php-princess.net/?p=254</guid>
		<description><![CDATA[Want rounded corners in your layout? You don&#8217;t need an image editor to create the images. Nor do you need an html editor to create the code. Try out the CSS Rounded Box Generator! It&#8217;ll save you time by generating the images, Html and CSS code for you!]]></description>
			<content:encoded><![CDATA[<p>Want rounded corners in your layout?  You don&#8217;t need an image editor to create the images.  Nor do you need an html editor to create the code.  Try out the <a href="http://www.neuroticweb.com/recursos/css-rounded-box/">CSS Rounded Box Generator</a>!  It&#8217;ll save you time by generating the images, Html and CSS code for you!</p>
<p><map name='google_ad_map_254_5ca5e442dc272ca0'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/254?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_254_5ca5e442dc272ca0' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=254&amp;url= http%3A%2F%2Fphp-princess.net%2F2005%2F03%2F30%2Fcss-rounded-corners-generator%2F' /></p><div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fphp-princess.net%2F2005%2F03%2F30%2Fcss-rounded-corners-generator%2F&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><img style='display:none' id="post-254-blankimage" onload="Meebo('discoverSharable', {element: ((this.parentNode.className.match('post')) ? this.parentNode : this.parentNode.parentNode) ,url:'http://php-princess.net/2005/03/30/css-rounded-corners-generator/',title:'CSS Rounded Corners Generator',tweet:'Want rounded corners in your layout?  You don&#8217;t need an image editor to create the images.  No',description:'Want rounded corners in your layout?  You don&#8217;t need an image editor to create the images.  No'})"><script type='text/javascript'>document.getElementById("post-254-blankimage").onload();</script><img src="http://php-princess.net/?ak_action=api_record_view&id=254&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://php-princess.net/2005/03/30/css-rounded-corners-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

