<?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; CSS</title>
	<atom:link href="http://peepinmymind.com/tag/css/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>Multi-Column Layout Using CSS 3</title>
		<link>http://peepinmymind.com/web/css/2009/01/multi-column-layout-using-css-3/</link>
		<comments>http://peepinmymind.com/web/css/2009/01/multi-column-layout-using-css-3/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 01:45:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[3]]></category>
		<category><![CDATA[column]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[multi]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I originally wrote this for work.  I figured I&#8217;d post it on my blog also, guess I&#8217;m a re-blogger after all. Multi-column layout The CSS3 function for Multi-Column Layout allows the user to creating a design similar to a Newspaper layout. With designs of blogs and websites heading towards a magazine layout type of style [...]]]></description>
			<content:encoded><![CDATA[<p>I originally wrote this for work.  I figured I&#8217;d post it on my blog also, guess I&#8217;m a re-blogger after all.</p>
<p><span style="text-decoration: underline;">Multi-column layout</span></p>
<p>The CSS3 function for Multi-Column Layout allows the user to creating a design similar to a Newspaper layout. With designs of blogs and websites heading towards a magazine layout type of style I figured this is truly a helpful style to use.</p>
<p><span style="text-decoration: underline;">Multi-column Layout Properties</span></p>
<p>column-count: 3;  this sets the number of columns for which the content will flow.<br />
column-width: 1em; this property sets the width of each column.<br />
column-rule: 1px solid black; this sets a border between the columns.</p>
<p><img class="aligncenter size-full wp-image-74" title="column-css3" src="http://peepinmymind.com/wp-content/uploads/2009/01/column-css3.gif" alt="column-css3" width="484" height="204" /></p>
<p>Code sample:<br />
<span id="more-73"></span></p>
<blockquote><p>DIV {<br />
width: 200px;<br />
column-count: 2;<br />
column-width: 100px;<br />
column-gap: 10px<br />
column-rule: 1px solid black;<br />
}</p></blockquote>
<p>Now if you want to have something span across the columns that can be easily down with the column span property.</p>
<p><img class="aligncenter size-full wp-image-75" title="column-span-css3" src="http://peepinmymind.com/wp-content/uploads/2009/01/column-span-css3.gif" alt="column-span-css3" width="484" height="204" /></p>
<p><span style="text-decoration: underline;">Multi-column Span Property:</span></p>
<p>column-span: all; This allows objects (text/images/etc) to display through multiple columns.</p>
]]></content:encoded>
			<wfw:commentRss>http://peepinmymind.com/web/css/2009/01/multi-column-layout-using-css-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>

