<?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>Suresh Online &#187; CSS</title>
	<atom:link href="http://www.sureshonline.com/category/technology/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sureshonline.com</link>
	<description>The Road less traveled ... and it&#039;s Written</description>
	<lastBuildDate>Fri, 30 Dec 2011 17:51:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Merits of CSS sites over Tabled sites</title>
		<link>http://www.sureshonline.com/2009/06/merits-of-css-sites-over-tabled-sites/</link>
		<comments>http://www.sureshonline.com/2009/06/merits-of-css-sites-over-tabled-sites/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 07:51:27 +0000</pubDate>
		<dc:creator>Suresh Kumar</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[W3C]]></category>

		<guid isPermaLink="false">http://sureshforuin.wordpress.com/?p=129</guid>
		<description><![CDATA[Always you may have heard the terms like tableless designs, CSS based sites etc. If you have always thought that why you should leave table based designs and take tableless designs, then here are the suggestions to your thoughts. The key benefits of CSS based sites on tabled sites are: Using CSS, sites code reduction [...]]]></description>
			<content:encoded><![CDATA[<p>Always you may have heard the terms like tableless designs, CSS based sites etc. If you have always thought that why you should leave table based designs and take tableless designs, then here are the suggestions to your thoughts. The key benefits of CSS based sites on tabled sites are:</p>
<ol>
<li>Using CSS, sites code reduction will be 1/5th comparing to tabled sites.</li>
<li>The site&#8217;s code is now fully semantic. It is not only understandable to human but also to search engines.</li>
<li>Reduction in code results in fast loading of pages helping users to browse the site easily which also reduce the bandwidth consumption.</li>
<li>CSS and HTML codes are validated ensuring consistence of the site in different platforms of operating systems and browsers.</li>
<li>Changing the way to use CSS and HTML improved the site&#8217;s crawl for search engine spiders, who cannot understand JavaScript based dynamic codes.</li>
<li>Removal of stylish flash titles and banners, with search engine friendly attractive CSS titles and banners.</li>
</ol>
<p>Thus these helped users as well with fast loading and properly displaying sites, with easy understanding of content placement. This also helped search engine spiders to crawl sites.</p>
<p><strong>There are also some demerits of using CSS sites.</strong></p>
<p>It may not similar in all browsers and there may slight difference in different browsers. You have to do some cross-browser compatibility tests and fixes. But overall it gives you more control and benefits than tabled designs. So start designing CSS based HTML sites, rather than table based sites.</p>
<p>Some of the websites I did using CSS are</p>
<ol>
<li><a href="http://a1teamindia.in/" target="_blank">http://a1teamindia.in</a></li>
<li><a href="http://www.corporater.com/" target="_blank">http://www.corporater.com</a></li>
<li><a href="http://www.roadmapstrategy.com/" target="_blank">http://www.roadmapstrategy.com</a></li>
<li><a href="http://www.paulniven.com/" target="_blank">http://www.paulniven.com</a></li>
<li><a href="http://abetterlifenow.net/" target="_blank">http://abetterlifenow.net</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.sureshonline.com/2009/06/merits-of-css-sites-over-tabled-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>W3C Validated CSS with IE Hacks</title>
		<link>http://www.sureshonline.com/2009/06/w3c-validated-css-with-ie-hacks/</link>
		<comments>http://www.sureshonline.com/2009/06/w3c-validated-css-with-ie-hacks/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 05:02:57 +0000</pubDate>
		<dc:creator>Suresh Kumar</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sureshforuin.wordpress.com/?p=123</guid>
		<description><![CDATA[Whenever there is a problem in validation because of IE hacks. Now here is the way to overcome the error to pass the validation. The general fix for IE 6 is &#8220;_ &#8221; followed by a property and value Example (_margin: 5px; ) For IE 7 &#8220;*&#8221; followed by a property and value Example (*margin: [...]]]></description>
			<content:encoded><![CDATA[<p>Whenever there is a problem in validation because of IE hacks. Now here is the way to overcome the error to pass the validation.</p>
<p>The general fix for IE 6 is &#8220;_ &#8221; followed by a property and value</p>
<p>Example (_margin: 5px; )</p>
<p>For IE 7 &#8220;*&#8221; followed by a property and value</p>
<p>Example (*margin: 5px ; )</p>
<p>But this will not get passed in W3C validation service.</p>
<p>Instead of setting property like this</p>
<p style="color:red;">h2 {*margin: 10px ;}</p>
<p>For IE 6 and below</p>
<p style="color:red;">* html h2 {margin: 10px ;}</p>
<p>IE 7 and below</p>
<p style="color:red;">*:first-child+html h2 {margin: 10px ;}</p>
<p>* html {margin: 10px ;}</p>
<p>IE 7 only</p>
<p style="color:red;">*:first-child+html h2 {margin: 10px ;}</p>
<p>Let assume a CSS like this. If</p>
<div style="background:#F0F0F0;border:1px solid #333;color:red;padding:10px;">p</p>
<p>{</p>
<p>padding: 5px;</p>
<p>}</p>
<p>*:first-child+html p</p>
<p>{</p>
<p>padding:10px;</p>
<p>}</p>
<p>* html p {</p>
<p>padding:10px;</p>
<p>}</p></div>
<p>Try the above CSS and check.</p>
<p>IE7 and IE6 paragraph padding will be 10px and all other browsers except IE Paragraph padding will be 5px;</p>
<p>Hey developers, now cross browsers issues can be solved with a proper standard W3C validation&#8230;</p>
<p>This will help out to style your website with proper web standards&#8230; Happy Styling <img src='http://www.sureshonline.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sureshonline.com/2009/06/w3c-validated-css-with-ie-hacks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: basic

Served from: www.sureshonline.com @ 2012-02-06 05:42:04 -->
