<?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>rtCafe &#187; css</title>
	<atom:link href="http://cafe.rtcamp.com/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://cafe.rtcamp.com</link>
	<description>rtCamp Cafe</description>
	<lastBuildDate>Wed, 22 Feb 2012 10:05:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Homer Simpson Rendered with CSS3</title>
		<link>http://cafe.rtcamp.com/2012/02/04/homer-simpson-rendered-css3/</link>
		<comments>http://cafe.rtcamp.com/2012/02/04/homer-simpson-rendered-css3/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 11:57:55 +0000</pubDate>
		<dc:creator>R@XiT</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css3]]></category>

		<guid isPermaLink="false">http://cafe.rtcamp.com/?p=715</guid>
		<description><![CDATA[Homer Simpson Rendered with CSS3 http://www.radium-v.com/stuff/homer/]]></description>
			<content:encoded><![CDATA[<p>Homer Simpson Rendered with CSS3</p>
<p><a title="Homer Simpson rendered with CSS3" href="http://www.radium-v.com/stuff/homer/">http://www.radium-v.com/stuff/homer/</a></p>]]></content:encoded>
			<wfw:commentRss>http://cafe.rtcamp.com/2012/02/04/homer-simpson-rendered-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS X Lion emulated in your web-browser using CSS 3</title>
		<link>http://cafe.rtcamp.com/2012/01/25/mac-os-lion-emulated-webbrowser-css-3/</link>
		<comments>http://cafe.rtcamp.com/2012/01/25/mac-os-lion-emulated-webbrowser-css-3/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 03:57:28 +0000</pubDate>
		<dc:creator>R@XiT</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css3]]></category>

		<guid isPermaLink="false">http://cafe.rtcamp.com/?p=692</guid>
		<description><![CDATA[Check @ http://www.alessioatzeni.com/mac-osx-lion-css3/]]></description>
			<content:encoded><![CDATA[<pre>Check @</pre>
<p><a href="http://www.alessioatzeni.com/mac-osx-lion-css3/" rel="nofollow">http://www.alessioatzeni.com/mac-osx-lion-css3/</a></p>
<p><br/></p>]]></content:encoded>
			<wfw:commentRss>http://cafe.rtcamp.com/2012/01/25/mac-os-lion-emulated-webbrowser-css-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>IE7 vertically centering image inside a div</title>
		<link>http://cafe.rtcamp.com/2012/01/04/ie7-vertically-centering-image-inside-a-div/</link>
		<comments>http://cafe.rtcamp.com/2012/01/04/ie7-vertically-centering-image-inside-a-div/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 18:34:32 +0000</pubDate>
		<dc:creator>Pranav Mhapsekar</dc:creator>
				<category><![CDATA[post]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[IE7]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://cafe.rtcamp.com/2012/01/04/ie7-vertically-centering-image-inside-a-div/</guid>
		<description><![CDATA[To vertically center an image inside a div tag we can use display:table-cell and vertical-align: middle as the css for the div , which will work for modern browsers. Lets take an example Suppose I have the following markup. We can apply the following css to get the image vertically as well as horizontally(text-align:center) centered [...]]]></description>
			<content:encoded><![CDATA[<p>To vertically center an image inside a div tag we can use display:table-cell and vertical-align: middle as the css for the div , which will work for modern browsers.<br />
Lets take an example<br />
Suppose I have the following markup.</p>
<div class="image">
    <img alt=" IE7 vertically centering image inside a div" src="http://imagepath" title="IE7 vertically centering image inside a div" />
</div>
<p>We can apply the following css to get the image vertically as well as horizontally(text-align:center) centered<br />
.image {<br />
  display: table-cell;<br />
  height: 120px;<br />
  text-align: center;<br />
  vertical-align: middle;<br />
  width: 175px;<br />
}</p>
<p>Now to get the same effect on IE7 (since IE7 doesn&#8217;t support table-cell value for display) we can use jQuery.<br />
The code is given below<br />
jQuery(&#8216;.ie7 .image img &#8216;).each(function () {<br />
        var img_height=jQuery(this).height();<br />
        var padding_value=(120-parseInt(img_height))/2+&#8217;px&#8217;;<br />
        jQuery(this).css(&#8216;padding-top&#8217;,padding_value);<br />
    });</p>
<p>This code will vetically center all images contained in the div having the class &#8220;image&#8221;<br />
var padding_value=(120-parseInt(img_height))/2+&#8217;px&#8217;; on this line 120 refers to the height of the div</p>
<p>Note:Image dimension should be less than the &#8220;div&#8221; dimension <img src='http://cafe.rtcamp.com/wp-includes/images/smilies/icon_smile.gif' alt="icon smile IE7 vertically centering image inside a div" class='wp-smiley' title="IE7 vertically centering image inside a div" /> </p>]]></content:encoded>
			<wfw:commentRss>http://cafe.rtcamp.com/2012/01/04/ie7-vertically-centering-image-inside-a-div/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>overriding (!important) of css by using jQuery</title>
		<link>http://cafe.rtcamp.com/2011/12/19/overriding-important-of-css-by-using-jquery/</link>
		<comments>http://cafe.rtcamp.com/2011/12/19/overriding-important-of-css-by-using-jquery/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 14:09:47 +0000</pubDate>
		<dc:creator>Pranav Mhapsekar</dc:creator>
				<category><![CDATA[post]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://cafe.rtcamp.com/2011/12/19/overriding-important-of-css-by-using-jquery/</guid>
		<description><![CDATA[Guys, If you are stuck with CSS which is having !important as a value for the property and as you must be knowing, jQuery doesn&#8217;t use !important value, and lets suppose it is a &#8220;must&#8221; thing for you to change the value through jQuery,then, you can use cssText property. Here is an example, Suppose i [...]]]></description>
			<content:encoded><![CDATA[<p>Guys,<br />
If you are stuck with CSS which is having !important as a value for the property and as you must be knowing, jQuery doesn&#8217;t use !important value, and lets suppose it is a &#8220;must&#8221; thing for you to change the value through jQuery,then, you can use cssText  property.</p>
<p>Here is an example,<br />
Suppose i have a CSS statement.<br />
#rtp-nav-menu li ul { display: none !important; color:#000000;}<br />
 jQuery for this is<br />
jQuery( &#8216;#rtp-nav-menu li ul &#8216;).css({&#8216;cssText&#8217;: &#8216;display: block !important&#8217;,'color&#8217;:'#000000&#8242;});</p>
<p>Remember that you give cssText property first as it overrides any style associated with the particular element.</p>]]></content:encoded>
			<wfw:commentRss>http://cafe.rtcamp.com/2011/12/19/overriding-important-of-css-by-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check out the Pseudo elements</title>
		<link>http://cafe.rtcamp.com/2011/11/30/check-pseudo-elements/</link>
		<comments>http://cafe.rtcamp.com/2011/11/30/check-pseudo-elements/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 12:22:06 +0000</pubDate>
		<dc:creator>Pradeep</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[pseudo elements]]></category>

		<guid isPermaLink="false">http://cafe.rtcamp.com/?p=617</guid>
		<description><![CDATA[Check out the Pseudo elements videos by Chris Coyier.. He has explained it very well.. specially &#8220;Front End Design Conference&#8221;!!]]></description>
			<content:encoded><![CDATA[<p>Check out the <a title="Pseudo elements videos by Chris Coyier" href="http://css-tricks.com/14325-videos-of-my-psuedo-elements-talk/" target="_blank">Pseudo elements videos by Chris Coyier</a>.. He has explained it very well.. specially &#8220;Front End Design Conference&#8221;!!</p>]]></content:encoded>
			<wfw:commentRss>http://cafe.rtcamp.com/2011/11/30/check-pseudo-elements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Results of Group Design Project on Rating Three Candy Bars &#124; CSS-Tricks</title>
		<link>http://cafe.rtcamp.com/2011/11/11/results-of-group-design-project-on-rating-three-candy-bars-css-tricks/</link>
		<comments>http://cafe.rtcamp.com/2011/11/11/results-of-group-design-project-on-rating-three-candy-bars-css-tricks/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 09:27:13 +0000</pubDate>
		<dc:creator>Rahul Bansal</dc:creator>
				<category><![CDATA[post]]></category>
		<category><![CDATA[Challenge]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://cafe.rtcamp.com/?p=608</guid>
		<description><![CDATA[A very good compilation! This proves there are many ways to do same task! Results of Group Design Project on Rating Three Candy Bars &#160; &#160;]]></description>
			<content:encoded><![CDATA[<p>A very good compilation! This proves there are many ways to do same task! <img src='http://cafe.rtcamp.com/wp-includes/images/smilies/icon_smile.gif' alt="icon smile Results of Group Design Project on Rating Three Candy Bars | CSS Tricks" class='wp-smiley' title="Results of Group Design Project on Rating Three Candy Bars | CSS Tricks" /> </p>
<p><a href="http://css-tricks.com/14681-results-of-group-design-project-on-rating-three-candy-bars/">Results of Group Design Project on Rating Three Candy Bars</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>]]></content:encoded>
			<wfw:commentRss>http://cafe.rtcamp.com/2011/11/11/results-of-group-design-project-on-rating-three-candy-bars-css-tricks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Style a File Browse Button with CSS</title>
		<link>http://cafe.rtcamp.com/2011/10/18/style-file-browse-button-css/</link>
		<comments>http://cafe.rtcamp.com/2011/10/18/style-file-browse-button-css/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 09:38:23 +0000</pubDate>
		<dc:creator>Pradeep</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[CSS Trick]]></category>

		<guid isPermaLink="false">http://cafe.rtcamp.com/?p=590</guid>
		<description><![CDATA[http://htmlcampus.com/style-a-file-browse-button-with-css/ You can also check the styling here: http://demo150.rtcamp.biz/ Click on the contact form link in the menu..]]></description>
			<content:encoded><![CDATA[<p><a href="http://htmlcampus.com/style-a-file-browse-button-with-css/" rel="nofollow">http://htmlcampus.com/style-a-file-browse-button-with-css/</a></p>
<p>You can also check the styling here: <a href="http://demo150.rtcamp.biz/" rel="nofollow">http://demo150.rtcamp.biz/</a><br />
Click on the contact form link in the menu..</p>]]></content:encoded>
			<wfw:commentRss>http://cafe.rtcamp.com/2011/10/18/style-file-browse-button-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Font Size Conversion Chart &#8211; webSemantics</title>
		<link>http://cafe.rtcamp.com/2011/08/09/font-size-conversion-chart-websemantics/</link>
		<comments>http://cafe.rtcamp.com/2011/08/09/font-size-conversion-chart-websemantics/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 16:32:00 +0000</pubDate>
		<dc:creator>Rahul Bansal</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[Chart]]></category>
		<category><![CDATA[Conversion]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Sizes]]></category>

		<guid isPermaLink="false">http://cafe.rtcamp.com/?p=530</guid>
		<description><![CDATA[Font Size Conversion Chart &#8211; webSemantics.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.websemantics.co.uk/resources/font_size_conversion_chart/">Font Size Conversion Chart &#8211; webSemantics</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cafe.rtcamp.com/2011/08/09/font-size-conversion-chart-websemantics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add images and styles to the WordPress custom menu &#124; WP Garage</title>
		<link>http://cafe.rtcamp.com/2011/06/11/how-to-add-images-and-styles-to-the-wordpress-custom-menu-wp-garage/</link>
		<comments>http://cafe.rtcamp.com/2011/06/11/how-to-add-images-and-styles-to-the-wordpress-custom-menu-wp-garage/#comments</comments>
		<pubDate>Sat, 11 Jun 2011 09:32:33 +0000</pubDate>
		<dc:creator>Rahul Bansal</dc:creator>
				<category><![CDATA[post]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[custom-css]]></category>
		<category><![CDATA[custom-menu]]></category>
		<category><![CDATA[nav-menu]]></category>
		<category><![CDATA[naviagtion]]></category>
		<category><![CDATA[screen-options]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://cafe.rtcamp.com/?p=511</guid>
		<description><![CDATA[How to add images and styles to the WordPress custom menu How many of you knew this already! Please comment.]]></description>
			<content:encoded><![CDATA[<p><a href="http://wpgarage.com/css/how-to-add-images-and-styles-to-the-wordpress-custom-menu/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+wordpressgarage+%28WP+Garage%29&amp;utm_content=Google+Reader">How to add images and styles to the WordPress custom menu</a></p>
<p>How many of you knew this already! Please comment.</p>]]></content:encoded>
			<wfw:commentRss>http://cafe.rtcamp.com/2011/06/11/how-to-add-images-and-styles-to-the-wordpress-custom-menu-wp-garage/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Wufoo Blog · How to Use Custom CSS to Further Customize the Look of your Wufoo Forms</title>
		<link>http://cafe.rtcamp.com/2011/05/28/wufoo-blog-%c2%b7-how-to-use-custom-css-to-further-customize-the-look-of-your-wufoo-forms/</link>
		<comments>http://cafe.rtcamp.com/2011/05/28/wufoo-blog-%c2%b7-how-to-use-custom-css-to-further-customize-the-look-of-your-wufoo-forms/#comments</comments>
		<pubDate>Sat, 28 May 2011 10:54:23 +0000</pubDate>
		<dc:creator>Rahul Bansal</dc:creator>
				<category><![CDATA[post]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[infographics]]></category>
		<category><![CDATA[wufoo]]></category>

		<guid isPermaLink="false">http://cafe.rtcamp.com/?p=499</guid>
		<description><![CDATA[This will help us very much while writing CSS for wufoo forms&#8230; Wufoo Blog · How to Use Custom CSS to Further Customize the Look of your Wufoo Forms. Direct Link to infographics - http://farm6.static.flickr.com/5085/5730351194_69b599cc03_o.png]]></description>
			<content:encoded><![CDATA[<p>This will help us very much while writing CSS for wufoo forms&#8230;</p>
<p><a href="http://wufoo.com/2011/05/20/form-anatomy-custom-css/">Wufoo Blog · How to Use Custom CSS to Further Customize the Look of your Wufoo Forms</a>.</p>
<p>Direct Link to infographics - <a href="http://farm6.static.flickr.com/5085/5730351194_69b599cc03_o.png">http://farm6.static.flickr.com/5085/5730351194_69b599cc03_o.png</a></p>]]></content:encoded>
			<wfw:commentRss>http://cafe.rtcamp.com/2011/05/28/wufoo-blog-%c2%b7-how-to-use-custom-css-to-further-customize-the-look-of-your-wufoo-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

