<?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>indiWiz.com &#187; css</title>
	<atom:link href="http://indiwiz.com/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://indiwiz.com</link>
	<description>Subhash&#039;s Tech Log</description>
	<lastBuildDate>Wed, 03 Mar 2010 13:24:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Text Transform in CSS</title>
		<link>http://indiwiz.com/2009/09/02/text-transform-in-css/</link>
		<comments>http://indiwiz.com/2009/09/02/text-transform-in-css/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 08:02:43 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=468</guid>
		<description><![CDATA[For one of my blog post, I copied a particular blog author&#8217;s name from his blog. The author name was displayed in his blog as TOM BAEYENS. When I copied and pasted it in a text editor, it pasted as: Tom Baeyens. I wondered how did copy-paste change the case of the text. After little [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>For one of my blog post, I copied a particular blog author&#8217;s name from <a href="http://processdevelopments.blogspot.com/">his blog</a>. The author name was displayed in his blog as <strong>TOM BAEYENS</strong>. When I copied and pasted it in a text editor, it pasted as: <strong>Tom Baeyens</strong>. I wondered how did copy-paste change the case of the text.</p>
<p>After little debugging using the <a href="https://addons.mozilla.org/en-US/firefox/addon/60">Firefox WebDeveloper plugin</a>, I found that the text in the blog had the CSS property <tt>text-transform</tt> with value <em>uppercase</em>.</p>
<p>After little more study, I learned that <tt>text-transform</tt> is a CSS2 property which supports the following values:</p>
<table border="1" cellpadding="5">
<tr>
<td>capitalize</td>
<td>Make first character in each word uppercase</td>
</tr>
<tr>
<td>uppercase</td>
<td>Make all characters uppercase</td>
</tr>
<tr>
<td>lowercase</td>
<td>Make all characters lowercase</td>
</tr>
<tr>
<td>none</td>
<td>No transformation</td>
</tr>
</table>
<p>To demonstrate, I write the text with different <tt>text-transform</tt> values:</p>
<table border="1" cellpadding="5">
<tr>
<td>none</td>
<td><span style="text-transform: none;">I love JAVA</span></td>
</tr>
<tr>
<td>capitalize</td>
<td><span style="text-transform: capitalize;">I love JAVA</span></td>
</tr>
<tr>
<td>uppercase</td>
<td><span style="text-transform: uppercase;">I love JAVA</span></td>
</tr>
<tr>
<td>lowercase</td>
<td><span style="text-transform: lowercase;">I love JAVA</span></td>
</tr>
</table>
<div class="shr-publisher-468"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2009/09/02/text-transform-in-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Cheatsheet Wallpaper in Helvetica</title>
		<link>http://indiwiz.com/2009/06/16/css-cheatsheet-wallpaper-in-helvetica/</link>
		<comments>http://indiwiz.com/2009/06/16/css-cheatsheet-wallpaper-in-helvetica/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 09:38:24 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=329</guid>
		<description><![CDATA[Found this useful link through digg.]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>Found this <a href="http://thewpresser.com/css-cheat-sheet-wallpaper-in-helvetica/">useful link</a> through <a href="http://digg.com/programming/CSS_Cheatsheet_Wallpaper_in_Helvetica">digg</a>.</p>
<div class="shr-publisher-329"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2009/06/16/css-cheatsheet-wallpaper-in-helvetica/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

