<?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>Peep in my mind &#187; transparency</title>
	<atom:link href="http://peepinmymind.com/tag/transparency/feed/" rel="self" type="application/rss+xml" />
	<link>http://peepinmymind.com</link>
	<description>...</description>
	<lastBuildDate>Sun, 30 May 2010 16:13:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>CSS Transparency and Rounded Corners Techniques</title>
		<link>http://peepinmymind.com/web/css/2008/12/css-transparency-and-rounded-corners-techniques/</link>
		<comments>http://peepinmymind.com/web/css/2008/12/css-transparency-and-rounded-corners-techniques/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 05:37:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[corners]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[round]]></category>
		<category><![CDATA[rounded]]></category>
		<category><![CDATA[transparency]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[After going through a few projects and picking up some css skills along the way here are some neat css tricks I’ve learned and found very helpful.  So helpful I figured I write somewhere so I can always find what I need instead of using google all the time. The first bit of code is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://peepinmymind.com/css/2008/12/css-transparency-and-rounded-corners-techniques/"><img class="aligncenter size-full wp-image-50" title="css_transparency_rounded_corners" src="http://peepinmymind.com/wp-content/uploads/2008/12/css_transparency_rounded_corners.jpg" alt="css_transparency_rounded_corners" width="498" height="213" /></a></p>
<p>After going through a few projects and picking up some css skills along the way here are some neat css tricks I’ve learned and found very helpful.  So helpful I figured I write somewhere so I can always find what I need instead of using google all the time. The first bit of code is setting transparency for objects like images and divs. it can be a nice effect for  setting transparent backgrounds behind some funky bg image.</p>
<p>Codes for setting transparency:</p>
<blockquote><p>For current firefox, safari browser<br />
opacity:0.7;</p>
<p>For firefox browser<br />
-moz-opacity:1.0;</p>
<p>For ie browser<br />
filter: alpha(opacity=100);</p></blockquote>
<p>Now here is something I&#8217;m completely stoked about and that is rounded corners.  I&#8217;m not sure about you but  I&#8217;ve always hated cutting out rounded corner images out just to make rounded corners(my blood is boiling just thinking of it).  Luckily the code below help eliminate most of these issues below are the code to create  rounded corners for safari and mozilla.  As for ie I don&#8217;t believe they support it yet but if you know they do please let me know ;D</p>
<p>Code for making rounded corners:<br />
<span id="more-49"></span></p>
<blockquote><p>For Safari browser:</p>
<p>this code sets all the corners<br />
-webkit-border-radius: 10px;</p>
<p>This set of code allows the user to specify which corner the user wants to be round.<br />
-webkit-border-top-left-radius:10px;<br />
-webkit-border-top-right-radius:10px;<br />
-webkit-border-bottom-radius:10px;<br />
-webkit-border-bottom-radius:10px;</p>
<p>For mozilla firefox browser:<br />
-moz-border-radius:10px;</p>
<p>This set of code allows the user to specify which corner the user wants to be round.<br />
-moz-border-radius-topleft:10px;<br />
-moz-border-radius-topright:10px;<br />
-moz-border-radius-bottomleft:10px;<br />
-moz-border-radius-bottomright:10px;</p></blockquote>
<p>ie currently doesn’t support rounded corners</p>
]]></content:encoded>
			<wfw:commentRss>http://peepinmymind.com/web/css/2008/12/css-transparency-and-rounded-corners-techniques/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

