<?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>Amit Yadav &#187; CSS</title>
	<atom:link href="http://www.amityadav.name/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.amityadav.name</link>
	<description>Things to know for effective coding</description>
	<lastBuildDate>Fri, 19 Aug 2011 17:51:59 +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>Using CSS3 Transitions, Transforms and Animation</title>
		<link>http://www.amityadav.name/using-css3-transitions-transforms-and-animation/</link>
		<comments>http://www.amityadav.name/using-css3-transitions-transforms-and-animation/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 17:13:38 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.amityadav.name/?p=622</guid>
		<description><![CDATA[If you haven&#8217;t used transitions before, here&#8217;s a very brief introduction. On the element you want to have animate, add the following CSS: ?View Code CSS1 2 3 4 5 6 7 #id_of_element &#123; -webkit-transition: all 1s ease-in-out; -moz-transition: all 1s ease-in-out; -o-transition: all 1s ease-in-out; -webkit-transition: all 1s ease-in-out; transition: all 1s ease-in-out; &#125; [...]]]></description>
			<content:encoded><![CDATA[<p>If you haven&#8217;t used transitions before, here&#8217;s a very brief introduction.</p>
<p>On the element you want to have animate, add the following CSS:</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p622code2'); return false;">View Code</a> CSS</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p6222"><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code" id="p622code2"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#id_of_element</span> <span style="color: #00AA00;">&#123;</span>
	-webkit-transition<span style="color: #00AA00;">:</span> all 1s ease-in-out<span style="color: #00AA00;">;</span>
	-moz-transition<span style="color: #00AA00;">:</span> all 1s ease-in-out<span style="color: #00AA00;">;</span>
	-o-transition<span style="color: #00AA00;">:</span> all 1s ease-in-out<span style="color: #00AA00;">;</span>
	-webkit-transition<span style="color: #00AA00;">:</span> all 1s ease-in-out<span style="color: #00AA00;">;</span>
	transition<span style="color: #00AA00;">:</span> all 1s ease-in-out<span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>There is a lot of duplication due to vendor prefixes &#8211; until the specification if finalised, this is likely to stay the same. If this bothers you, there are various tools such as <a href="http://wiki.github.com/anthonyshort/csscaffold/">CSS Scaffold</a> that allow you to define mixins to avoid repetitive code.</p>
<p>The syntax is pretty straightforward &#8211; the property you want to animate, all or border-radius or color or whatever, the time to run, then the transition timing function.</p>
<p>To actually animate a property, any time it changes, it will gradually change from one to the other. This can be due to a different set of properties set on hover, or a new class set by javascript.</p>
<p>To find out more, read through the <a href="http://www.w3.org/TR/css3-transitions/">W3C specification</a>.</p>
<p><a title="CSS3 Transition" href="http://amityadav.name/css3_transition.html" target="_blank">Here</a> is the demo for a simple transition.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.amityadav.name%2Fusing-css3-transitions-transforms-and-animation%2F&amp;title=Using%20CSS3%20Transitions%2C%20Transforms%20and%20Animation" id="wpa2a_2"><img src="http://www.amityadav.name/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.amityadav.name/using-css3-transitions-transforms-and-animation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSS3 &#8211; Multi Column Layout Demonstration</title>
		<link>http://www.amityadav.name/css3-multi-column-layout-demonstration/</link>
		<comments>http://www.amityadav.name/css3-multi-column-layout-demonstration/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 09:33:52 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.amityadav.name/?p=429</guid>
		<description><![CDATA[CSS3 &#8211; Multi Column Layout Demonstration http://www.csscripting.com/css-multi-column/]]></description>
			<content:encoded><![CDATA[<p>CSS3 &#8211; Multi Column Layout Demonstration</p>
<p><a class="alignleft" title="Link" href="http://http://www.csscripting.com/css-multi-column/" target="_blank">http://www.csscripting.com/css-multi-column/</a></p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/pixy.gif?x-id=461e5cf8-84e8-49a9-8a19-1ddb189962b3" alt="" /><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.amityadav.name%2Fcss3-multi-column-layout-demonstration%2F&amp;title=CSS3%20%26%238211%3B%20Multi%20Column%20Layout%20Demonstration" id="wpa2a_4"><img src="http://www.amityadav.name/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.amityadav.name/css3-multi-column-layout-demonstration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PNG fix IE: CSS only</title>
		<link>http://www.amityadav.name/png-fix-ie-css-only/</link>
		<comments>http://www.amityadav.name/png-fix-ie-css-only/#comments</comments>
		<pubDate>Tue, 19 May 2009 07:05:43 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[2D]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Internet Explorer 6]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[Portable Network Graphics]]></category>
		<category><![CDATA[Transparency]]></category>

		<guid isPermaLink="false">http://www.amityadav.name/?p=322</guid>
		<description><![CDATA[In IE6, PNG images with transparency do not show their transparent regions, so you have to use some crazy IE6 proprietary filters. I have used the css code snippet below in my projects to achieve PNG image transparency. Place it in a css file. ?View Code HTML1 2 3 4 5 6 7 8 9 [...]]]></description>
			<content:encoded><![CDATA[<p>In <a class="zem_slink" title="Internet Explorer 6" rel="homepage" href="http://www.microsoft.com/windows/ie/ie6/">IE6</a>, PNG images with transparency do not show their transparent regions, so you have to use some crazy IE6 proprietary filters.</p>
<p>I have used the css code snippet below in my projects to achieve PNG image transparency. Place it in a css file.</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p322code4'); return false;">View Code</a> HTML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p3224"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code" id="p322code4"><pre class="html" style="font-family:monospace;">* &lt;a class=&quot;zem_slink&quot; title=&quot;HTML&quot; rel=&quot;wikipedia&quot; href=&quot;http://en.wikipedia.org/wiki/HTML&quot;&gt;html&lt;/a&gt; img,
* html .png{
position:relative;
behavior: expression((this.runtimeStyle.behavior=&quot;none&quot;)&amp;amp;&amp;amp;(this.pngSet?this.pngSet=true:(this.nodeName == &quot;IMG&quot; &amp;amp;&amp;amp; this.src.toLowerCase().indexOf('.png')&amp;gt;-1?(this.runtimeStyle.backgroundImage = &quot;none&quot;,
this.runtimeStyle.filter = &quot;progid:DXImageTransform.Microsoft.AlphaImageLoader(src='&quot; + this.src + &quot;', sizingMethod='image')&quot;,
this.src = &quot;transparent.gif&quot;):(this.origBg = this.origBg? this.origBg :this.currentStyle.backgroundImage.toString().replace('url(&quot;','').replace('&quot;)',''),
this.runtimeStyle.filter = &quot;progid:DXImageTransform.Microsoft.AlphaImageLoader(src='&quot; + this.origBg + &quot;', sizingMethod='crop')&quot;,
this.runtimeStyle.backgroundImage = &quot;none&quot;)),this.pngSet=true)
);
}</pre></td></tr></table></div>

<p>You can use conditional include for this hack code so that the good browsers do not see this.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img class="zemanta-pixie-img" style="border:none;float:right" src="http://img.zemanta.com/pixy.gif?x-id=48cbe946-8a9f-469c-8533-e1a49b271e22" alt="" /><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.amityadav.name%2Fpng-fix-ie-css-only%2F&amp;title=PNG%20fix%20IE%3A%20CSS%20only" id="wpa2a_6"><img src="http://www.amityadav.name/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.amityadav.name/png-fix-ie-css-only/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3D Cube using CSS transformations</title>
		<link>http://www.amityadav.name/3d-cube-using-css-transformations/</link>
		<comments>http://www.amityadav.name/3d-cube-using-css-transformations/#comments</comments>
		<pubDate>Mon, 18 May 2009 07:11:27 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Gecko]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Scalable Vector Graphics]]></category>
		<category><![CDATA[WebKit]]></category>

		<guid isPermaLink="false">http://www.amityadav.name/?p=310</guid>
		<description><![CDATA[http://www.fofronline.com/2009-04/3d-cube-using-css-transformations/ The impression of a three dimensional cube can be created using modern CSS techniques, without the need for JavaScript, imagery, canvas or SVG. Supported in recent WebKit and Gecko based browsers, most importantly Firefox 3.5+ -moz-transform and Safari 3.2+ -webkit-transform.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.fofronline.com/2009-04/3d-cube-using-css-transformations/" target="_blank">http://www.fofronline.com/2009-04/3d-cube-using-css-transformations/</a></p>
<p>The impression of a three dimensional cube can be created using modern <a class="zem_slink" title="Cascading Style Sheets" rel="wikipedia" href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets">CSS</a> techniques, without the need for <a class="zem_slink" title="JavaScript" rel="wikipedia" href="http://en.wikipedia.org/wiki/JavaScript">JavaScript</a>, imagery, canvas or <a class="zem_slink" title="Scalable Vector Graphics" rel="homepage" href="http://www.w3.org/Graphics/SVG/">SVG</a>. Supported in recent <a class="zem_slink" title="WebKit" rel="homepage" href="http://webkit.org/">WebKit</a> and <a class="zem_slink" title="Gecko (layout engine)" rel="homepage" href="http://developer.mozilla.org/en/docs/Gecko">Gecko</a> based browsers, most importantly <a class="zem_slink" title="Mozilla Firefox" rel="geolocation" href="http://maps.google.com/maps?ll=45.1238,-123.1138&amp;spn=1.0,1.0&amp;q=45.1238,-123.1138 (Mozilla%20Firefox)&amp;t=h">Firefox</a> 3.5+ <code>-moz-transform</code> and <a class="zem_slink" title="Safari (web browser)" rel="homepage" href="http://www.apple.com/safari/">Safari</a> 3.2+ <code>-webkit-transform</code>.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img class="zemanta-pixie-img" style="border:none;float:right" src="http://img.zemanta.com/pixy.gif?x-id=f58943d2-4c66-4d22-ac85-82c4b4ed2d1e" alt="" /><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.amityadav.name%2F3d-cube-using-css-transformations%2F&amp;title=3D%20Cube%20using%20CSS%20transformations" id="wpa2a_8"><img src="http://www.amityadav.name/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.amityadav.name/3d-cube-using-css-transformations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blockquote vs. Q vs. Cite</title>
		<link>http://www.amityadav.name/blockquote-vs-q-vs-cite/</link>
		<comments>http://www.amityadav.name/blockquote-vs-q-vs-cite/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 04:36:21 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.amityadav.name/blockquote-vs-q-vs-cite/</guid>
		<description><![CDATA[According to HTML specifications, there are three elements which are supposed to semantically mark up quotations, namely &#60;blockquote&#62;, &#60;q&#62; and &#60;cite&#62;. Although all intended to markup quotes, they should be used in different contexts. So when should you use what? HTML Dog provides a nice and compact overview of these elements: &#60;blockquote&#62; blockquote is a [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">According to HTML specifications, there are three elements which are supposed  to semantically mark up quotations, namely <code>&lt;blockquote&gt;</code>,  <code>&lt;q&gt;</code> and <code>&lt;cite&gt;</code>. Although all intended to  markup quotes, they should be used in different contexts. So when should you use  what? <a href="http://htmldog.com/reference/htmltags/">HTML Dog</a> provides a  nice and compact overview of these elements:</p>
<div align="justify"></div>
<h4 align="justify">&lt;blockquote&gt;</h4>
<div align="justify"></div>
<p align="justify"><strong>blockquote</strong> is a large quotation. The content of a  blockquote<br />
element must include block-level elements such as headings, lists,  paragraphs<br />
or div’s. This element can also have an optional attribute  <code>cite</code><br />
that specifies the location (in the form of a URI) where  the quote has come from. Example:</p>
<div align="justify">
<pre class="html"><span class="sublevel2">&lt;blockquote cite=”http://www.htmldog.com/reference/htmltags/blockquote/”&gt;</span>

   &lt;p&gt;A large quotation. The content of a blockquote element must
      include block-level elements such as headings, lists, paragraphs
      or div’s.&lt;/p&gt;
   &lt;p&gt;cite can be used to specify the location (in the form of a URI)
 where the quote has come from.&lt;/p&gt;

<span class="sublevel2">&lt;/blockquote&gt;</span></pre>
</div>
<h4 align="justify">&lt;q&gt;</h4>
<div align="justify"></div>
<p align="justify"><strong>q</strong> is a small quotation. The content of this element is an  in-line quote. Modern browsers know how to interpret <code>&lt;q&gt;</code>  which is why you can style quotations using this HTML-elements via CSS.  Example:</p>
<div align="justify">
<pre class="html">&lt;p&gt;Bob said <span class="sublevel2">&lt;q&gt;</span>sexy pyjamas<span class="sublevel2">&lt;/q&gt;</span> but Chris said <span class="sublevel2">&lt;q&gt;</span>a kimono<span class="sublevel2">&lt;/q&gt;</span>&lt;/p&gt;</pre>
</div>
<p align="justify">Although <code>&lt;q&gt;</code> is almost never used, it has some useful  properties. For instance, you can <strong>specify the appearance of  quotes</strong> within the <code>&lt;q&gt;</code>-element via CSS. That’s  reasonable as different languages use different quotation marks for the same  purpose. For instance, these ones:</p>
<div align="justify">
<pre class="html">Q {}
Q { quotes: '»' '«'   }
Q { quotes: '„' '“' }</pre>
</div>
<p align="justify">Modern browsers support this way of styling. Of course, Internet Explorer  (even in its 8th version) doesn’t support it although it knows  <code>&lt;q&gt;</code> pretty well. In particular, since some problems with  encoding of quotes can appear sometimes it’s useful to provide numeric values  (see below).</p>
<div align="justify"></div>
<p align="justify">According to standards you can even specify the appearance of quotation marks  depending on the browser’s language of the user. This is how a W3C-example looks  like:</p>
<div align="justify">
<pre class="html">:lang(fr) &gt; Q { quotes: '« ' ' »' }
:lang(de) &gt; Q { quotes: '»'   '«' '2039' '203A' }</pre>
</div>
<p align="justify">As pretty as they may be, pull quotes have inherent problems in the way they  are placed in the middle of HTML content. To a visual, CSS enabled browser all  might seem hunky-dory, but to those browsers that are not CSS-abled and fall  back on the plain HTML or to screen readers for visually impaired users, the  pull quotes will appear slap bang in the middle of the main content. A quote  suddenly appearing between two paragraphs is clearly out of place and will  confusingly break the flow.</p>
<div align="justify"></div>
<p align="justify">If you are using pull-quotes, it is wise to provide a little extra  information for users who would stumble on this problem. In the XHTML you can  provide a message, hidden from view with CSS that reads something like &#8220;Start of  pull-quote&#8221; before the quote and then &#8220;end quote&#8221; after it. You could even have  a link similar to the &#8220;skip navigation&#8221; link, which would offer the user the  ability to skip the pull-quote and continue to the main content.</p>
<div align="justify"></div>
<h4 align="justify">&lt;cite&gt;</h4>
<div align="justify"></div>
<p align="justify"><strong>cite</strong> defines an in-line citation or reference to another  source. Example:</p>
<div align="justify">
<pre class="html">&lt;p&gt;And <span class="sublevel2">&lt;cite&gt;</span>Bob<span class="sublevel2">&lt;/cite&gt;</span> said &lt;q&gt;No, I think it’s a banana&lt;/q&gt;.&lt;/p&gt;</pre>
</div>
<p align="justify">Summing up: for large quotes use <em>blockquote</em>, for small quotes use  <em>q</em> and for references to another sources <em>cite</em> should be used.  In practice, usually only <em>blockquote</em> and <em>q</em> are used.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.amityadav.name%2Fblockquote-vs-q-vs-cite%2F&amp;title=Blockquote%20vs.%20Q%20vs.%20Cite" id="wpa2a_10"><img src="http://www.amityadav.name/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.amityadav.name/blockquote-vs-q-vs-cite/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSS Generator</title>
		<link>http://www.amityadav.name/css-generator/</link>
		<comments>http://www.amityadav.name/css-generator/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 05:55:30 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.amityadav.name/css-generator/</guid>
		<description><![CDATA[Clean CSS CSS Formatter and Optimiser CSS Button Generator CSS Button &#38; Text Field Generator CSS Creator Live CSS Cascading Style Sheet Layout generator for your web site CSS Font and Text Style Wizard Use this wizard to experiment with font and text styles and generate sample CSS style source code. QrONE CSS Designer Online [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://www.cleancss.com/?lang=en" target="_blank">Clean CSS</a><br />
CSS Formatter and Optimiser</li>
<li><a href="http://www.devdude.com/tools/tool.pl?TID=11" target="_blank">CSS Button Generator</a><br />
CSS Button &amp; Text Field Generator</li>
<li><a href="http://www.csscreator.com/version2/pagelayout.php" target="_blank">CSS Creator</a><br />
Live CSS Cascading Style Sheet Layout generator for your web site</li>
<li><a href="http://www.somacon.com/p334.php" target="_blank">CSS Font and Text Style Wizard</a><br />
Use this wizard to experiment with font and text styles and generate sample CSS style source code.</li>
<li><a href="http://www.qrone.org/cssdesigner.html" target="_blank">QrONE CSS Designer</a><br />
Online CSS Generator</li>
<li><a href="http://flumpcakes.co.uk/css/optimiser/" target="_blank">Online CSS Optimiser/Optimizer</a><br />
This tool is used to optimise CSS code. Enter either a URL or Copy &amp; Paste the stylesheet into the box, and click Go</li>
<li><a href="http://cdburnerxp.se/cssparse/css_optimiser.php?lang=en" target="_blank">CSS Formatter and Optimiser</a><br />
CSS optimize</li>
<li><a href="http://www.maketemplate.com/form/" target="_blank">CSS Form Code Maker</a><br />
Generates ‘Colorful Box Layout’ For Forms</li>
<li><a href="http://www.webmaster-toolkit.com/css-menu-generator.shtml" target="_blank">CSS Menu Generator</a><br />
Our CSS Menu Generator will generate both the CSS and the HTML code required to produce a text-based yet appealing set of navigation buttons.</li>
<li><a href="http://www.lonniebest.com/FormatCSS/" target="_blank">Format CSS Online</a><br />
Automatically format your CSS (cascading style sheets) so they are easy to read and edit…..</li>
<li><a href="http://www.cssoptimiser.com/" target="_blank">Online CSS Optimizer</a><br />
CSS Optimizer optimizes and reduces the file size of the Cascading Style Sheets</li>
<li><a href="http://www.collylogic.com/scripts/rollover.html" target="_blank">Colly’s CSS rollover generator</a><br />
CollyLogic CSS Multi-element Rollover Generator</li>
<li><a href="http://wigflip.com/cornershop/" target="_blank">Cornershop</a><br />
Rounded Graphics for CSS Box Corners</li>
<li><a href="http://www.neuroticweb.com/recursos/css-rounded-box/" target="_blank">CSS Rounded Box Generator (Beta)</a><br />
Generates both the images and code you need for a rounded box.</li>
<li><a href="http://www.iconico.com/CSSScrollbar/" target="_blank">Online CSS Scrollbar Color Changer</a><br />
Change the scrollbar colors in an HTML page</li>
<li><a href="http://www.highdots.com/css-list/index.php" target="_blank">CSS Tab Designer</a><br />
CSS Tab Designer is a unique and easy to use software to help you design css-based lists and tabs visually and without any programming knowledge required!</li>
<li><a href="http://www.ibdjohn.com/csstemplate/" target="_blank">Free CSS Template Code Generator</a><br />
Maker for 3 Column Layout (tableless)</li>
<li><a href="http://www.somacon.com/p141.php" target="_blank">HTML and CSS Table Border Style Wizard</a><br />
Use this wizard to experiment with table border styles and generate style source code.</li>
<li><a href="http://www.inknoise.com/experimental/layoutomatic.php" target="_blank">Layout-o-Matic</a><br />
Generates tableless CSS layouts at the touch of a button</li>
<li><a href="http://css.maxdesign.com.au/listamatic/" target="_blank">Listamatic</a><br />
one list, many options &#8211;  Using CSS and a simple list to create radically different list</li>
<li><a href="http://css.maxdesign.com.au/listamatic2/index.htm" target="_blank">Listamatic2</a><br />
nested list options</li>
<li><a href="http://www.accessify.com/tools-and-wizards/developer-tools/list-o-matic/" target="_blank">List-O-Matic</a><br />
Generate CSS-styled navigation menus based on list items</li>
<li><a href="http://www.listulike.com/generator/" target="_blank">List-u-Like CSS Generator</a><br />
Create cross-browser list-based navigation bars with ease</li>
<li><a href="http://www.s5easy.com/" target="_blank">S5Easy: Create S5 Slideshows Easy Online</a><br />
Create your slideshow in only 3 steps</li>
<li><a href="http://www.scriptomizers.com/css/stylesheet_generator" target="_blank">Scriptomizers</a><br />
A CSS stylesheet generator</li>
<li><a href="http://www.positioniseverything.net/articles/pie-maker/pagemaker_form.php" target="_blank">The Generator Form v2.90</a><br />
CSS Source Ordered Variable Border 1-3 Columned Page Maker</li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.amityadav.name%2Fcss-generator%2F&amp;title=CSS%20Generator" id="wpa2a_12"><img src="http://www.amityadav.name/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.amityadav.name/css-generator/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

