<?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>Making Life Simple &#187; css</title>
	<atom:link href="http://www.lalitmehta.com/home/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lalitmehta.com/home</link>
	<description></description>
	<lastBuildDate>Tue, 09 Feb 2010 21:36:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>CSS Float</title>
		<link>http://www.lalitmehta.com/home/2007/09/12/css-float/</link>
		<comments>http://www.lalitmehta.com/home/2007/09/12/css-float/#comments</comments>
		<pubDate>Wed, 12 Sep 2007 14:55:15 +0000</pubDate>
		<dc:creator>lalit</dc:creator>
				<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.lalitmehta.com/home/2007/09/12/css-float/</guid>
		<description><![CDATA[float is not a positioning property in CSS —the only position properties in CSS are absolute, relative, fixed, and static—however, when you combine widths, margins, and floats, you have CSS properties at your command that are often more reliable in terms of layouts than any of the available position properties. I was reading about CSS [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>float is not a positioning property in CSS —the only position properties in CSS are <em>absolute</em>, <em>relative</em>, <em>fixed</em>, and <em>static</em>—however, when you combine widths, margins, and floats, you have CSS properties at your command that are often more reliable in terms of layouts than any of the available position properties.</p></blockquote>
<p>I was reading about CSS and was trying to create a layout using float. There is a great article that explains  CSS float in <a href="http://www.digital-web.com/articles/web_design_101_floats/" title="Web Design: 101 - CSS Float" target="_blank">detail</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lalitmehta.com/home/2007/09/12/css-float/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advantages of using CSS</title>
		<link>http://www.lalitmehta.com/home/2007/09/12/advantages-of-using-css/</link>
		<comments>http://www.lalitmehta.com/home/2007/09/12/advantages-of-using-css/#comments</comments>
		<pubDate>Wed, 12 Sep 2007 14:52:35 +0000</pubDate>
		<dc:creator>lalit</dc:creator>
				<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.lalitmehta.com/home/2007/09/12/advantages-of-using-css/</guid>
		<description><![CDATA[CSS is becoming very popular these days and creating layouts using CSS is becoming a standard. The advantages of using CSS are: Easier to make site-wide changes. It is easier to maintain one CSS file rather than modifying each page. Making changes to layout does not affect the HTML or server side code. As browsers [...]]]></description>
			<content:encoded><![CDATA[<p>CSS is becoming very popular these days and creating layouts using CSS is becoming a standard. The advantages of using CSS are:</p>
<ul>
<li>Easier to make site-wide changes. It is easier to maintain one CSS file rather than modifying each page.</li>
<li>Making changes to layout does not affect the HTML or server side code.</li>
<li>As browsers cache the style sheet page, the page loading becomes fast. The styles classes are not loaded from server each time, if different pages of same site use the same CSS, the cache is read.</li>
<li>As property with value is defined at a common style class and we use the same class at different locations, so we use less code. Less code means less bandwidth consumption and easy to maintain the content.</li>
<li>Layout and position of navigation can be completely consistent across a site.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.lalitmehta.com/home/2007/09/12/advantages-of-using-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rules for Speeding Up Your Web Site</title>
		<link>http://www.lalitmehta.com/home/2007/09/04/rules-for-speeding-up-your-web-site/</link>
		<comments>http://www.lalitmehta.com/home/2007/09/04/rules-for-speeding-up-your-web-site/#comments</comments>
		<pubDate>Wed, 05 Sep 2007 03:25:24 +0000</pubDate>
		<dc:creator>lalit</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[general web]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.lalitmehta.com/home/2007/09/04/rules-for-speeding-up-your-web-site/</guid>
		<description><![CDATA[Yahoo Developer Network posted a nice set of rules to speed up your website. The excerpt is as follows: Make Fewer HTTP Requests Use a Content Delivery Network Add an Expires Header Gzip Components Put Stylesheets at the Top Put Scripts at the Bottom Avoid CSS Expressions Make JavaScript and CSS External Reduce DNS Lookups [...]]]></description>
			<content:encoded><![CDATA[<p>Yahoo Developer Network posted a nice set of rules to speed up your website. The excerpt is as follows:</p>
<ol>
<li>  Make Fewer HTTP Requests</li>
<li>  Use a Content Delivery Network</li>
<li>  Add an Expires Header</li>
<li>  Gzip Components</li>
<li>  Put Stylesheets at the Top</li>
<li>  Put Scripts at the Bottom</li>
<li>  Avoid CSS Expressions</li>
<li>  Make JavaScript and CSS External</li>
<li>  Reduce DNS Lookups</li>
<li>  Minify JavaScript</li>
<li>  Avoid Redirects</li>
<li>  Remove Duplicate Scripts</li>
<li>  Configure ETags</li>
</ol>
<p>You can read the full article <a href="http://developer.yahoo.com/performance/rules.html" title="Thirteen Simple Rules for Speeding Up Your Web Site" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lalitmehta.com/home/2007/09/04/rules-for-speeding-up-your-web-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to apply  border to tables in Internet Explorer</title>
		<link>http://www.lalitmehta.com/home/2007/08/09/how-to-apply-border-to-tables-in-internet-explorer/</link>
		<comments>http://www.lalitmehta.com/home/2007/08/09/how-to-apply-border-to-tables-in-internet-explorer/#comments</comments>
		<pubDate>Fri, 10 Aug 2007 01:04:13 +0000</pubDate>
		<dc:creator>lalit</dc:creator>
				<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.lalitmehta.com/home/2007/08/09/how-to-apply-border-to-tables-in-internet-explorer/</guid>
		<description><![CDATA[IE does not acknowledge borders for the &#60;tr&#62; element. The only way to allow it is to trick IE by creating an illusion that the &#60;td&#62; element is continuous in a given &#60;tr&#62;. To do that set the value of border-collapse property to collapse for the given table. eg. table { border-collapse:collapse; } td { [...]]]></description>
			<content:encoded><![CDATA[<p>IE does not acknowledge borders for the &lt;tr&gt; element. The only way to allow it is to trick IE by creating an illusion that the &lt;td&gt; element is continuous in a given &lt;tr&gt;.</p>
<p>To do that set the value of <em>border-collapse</em> property to <em>collapse</em> for the given table.</p>
<p>eg.<br />
table { border-collapse:collapse; }<br />
td { border-bottom:2px solid #000; }</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lalitmehta.com/home/2007/08/09/how-to-apply-border-to-tables-in-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
