<?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>Rafał Żelazko - Dev Blog &#187; CSS Tricks</title>
	<atom:link href="http://rafal.zelazko.info/category/css-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://rafal.zelazko.info</link>
	<description>On Rafał Żelazko - Dev Blog you can find some useful tricks for web developers, linux and advanced windows users.</description>
	<lastBuildDate>Tue, 24 Jan 2012 10:53:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<image>
<link>http://rafal.zelazko.info</link>
<url>/favicon.ico</url>
<title>Rafał Żelazko - Dev Blog</title>
</image>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Powerful CSS-Techniques For Effective Coding</title>
		<link>http://rafal.zelazko.info/2008/02/25/powerful-css-techniques-for-effective-coding/</link>
		<comments>http://rafal.zelazko.info/2008/02/25/powerful-css-techniques-for-effective-coding/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 12:27:06 +0000</pubDate>
		<dc:creator>rzelazko</dc:creator>
				<category><![CDATA[CSS Tricks]]></category>

		<guid isPermaLink="false">http://www.rzelazko.ath.cx/2008/02/25/powerful-css-techniques-for-effective-coding/</guid>
		<description><![CDATA[In this post we present 50 new CSS-techniques, ideas and ready-to-use solutions for effective coding. You definitely know some of them, but definitely not all of them. [...]]]></description>
		<wfw:commentRss>http://rafal.zelazko.info/2008/02/25/powerful-css-techniques-for-effective-coding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Height 100% with divs.</title>
		<link>http://rafal.zelazko.info/2007/07/10/height-100-with-divs/</link>
		<comments>http://rafal.zelazko.info/2007/07/10/height-100-with-divs/#comments</comments>
		<pubDate>Tue, 10 Jul 2007 08:30:55 +0000</pubDate>
		<dc:creator>rzelazko</dc:creator>
				<category><![CDATA[CSS Tricks]]></category>

		<guid isPermaLink="false">http://blog.teamns.sytes.net/2007/07/10/height-100-with-divs/</guid>
		<description><![CDATA[If you need set height of one div as long as other div (both div float left) you must do some tricks. Base code: 123#wrapper &#123; clear: [...]]]></description>
		<wfw:commentRss>http://rafal.zelazko.info/2007/07/10/height-100-with-divs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Min-height (working in IE and FF)</title>
		<link>http://rafal.zelazko.info/2007/04/18/min-height-working-in-ie-and-ff/</link>
		<comments>http://rafal.zelazko.info/2007/04/18/min-height-working-in-ie-and-ff/#comments</comments>
		<pubDate>Wed, 18 Apr 2007 10:52:22 +0000</pubDate>
		<dc:creator>rzelazko</dc:creator>
				<category><![CDATA[CSS Tricks]]></category>

		<guid isPermaLink="false">http://blog.teamns.sytes.net/2007/04/18/min-height-working-in-ie-and-ff/</guid>
		<description><![CDATA[CSS min-height which works fine in IE and FF: 123height: 60px; height: auto !important; min-height: 60px;]]></description>
		<wfw:commentRss>http://rafal.zelazko.info/2007/04/18/min-height-working-in-ie-and-ff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vertical align to multiline content</title>
		<link>http://rafal.zelazko.info/2007/04/18/vertical-align-to-multiline-content/</link>
		<comments>http://rafal.zelazko.info/2007/04/18/vertical-align-to-multiline-content/#comments</comments>
		<pubDate>Wed, 18 Apr 2007 10:39:23 +0000</pubDate>
		<dc:creator>rzelazko</dc:creator>
				<category><![CDATA[CSS Tricks]]></category>

		<guid isPermaLink="false">http://blog.teamns.sytes.net/2007/04/18/vertical-align-to-multiline-content/</guid>
		<description><![CDATA[Problem solved on: www.jakpsatweb.cz]]></description>
		<wfw:commentRss>http://rafal.zelazko.info/2007/04/18/vertical-align-to-multiline-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vertical align to one line of text</title>
		<link>http://rafal.zelazko.info/2007/04/18/vertical-align-to-one-line-of-text/</link>
		<comments>http://rafal.zelazko.info/2007/04/18/vertical-align-to-one-line-of-text/#comments</comments>
		<pubDate>Wed, 18 Apr 2007 10:38:12 +0000</pubDate>
		<dc:creator>rzelazko</dc:creator>
				<category><![CDATA[CSS Tricks]]></category>

		<guid isPermaLink="false">http://blog.teamns.sytes.net/2007/04/18/vertical-align-to-one-line-of-text/</guid>
		<description><![CDATA[Info Setting vertical aligment to middle for one (!!!) line of text. Solution In css styles: 12345.mid &#123; height: 2em; line-height: 2em; background-color: #eee; &#125; In html [...]]]></description>
		<wfw:commentRss>http://rafal.zelazko.info/2007/04/18/vertical-align-to-one-line-of-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

