<?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>arvindandrion.com &#187; Css</title>
	<atom:link href="http://www.arvindandrion.com/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.arvindandrion.com</link>
	<description>Hi! My name is Arvind Andrion web designer from Philippines</description>
	<lastBuildDate>Mon, 26 Jul 2010 16:44:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Jquery image slideshow</title>
		<link>http://www.arvindandrion.com/jquery/jquery-image-slideshow/</link>
		<comments>http://www.arvindandrion.com/jquery/jquery-image-slideshow/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 03:38:08 +0000</pubDate>
		<dc:creator>Arvind</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://www.arvindandrion.com/?p=901</guid>
		<description><![CDATA[Hi guys you might say that “Oh no! not another image slideshow” yes I know. I have made this plugin for me to keep things simple and use what exactly what is needed. Imagine using 2kb plugin I think less &#8230;]]></description>
			<content:encoded><![CDATA[<p>Hi guys you might say that “Oh no! not another image slideshow” yes I know. I have made this plugin for me to keep things simple and use what exactly what is needed. Imagine using 2kb plugin I think less if compress. That’s a big discount ahahahahaah! I hope you got my point. Hey  I’m not a fully, king or master javascript programmer I’m just starting up. So if you guys have a nice idea or good approach might as well share it in the comment. I might enhance this plugin by adding paging and more effects in transition. In the future I think.</p>
<div class="demo"><a title="Demo" href="http://arvindandrion.com/example/imageSlideshow/" target="_blank">Demo</a> | <a title="Download" href="http://arvindandrion.com/example/imageSlideshow/imageSlidehow.rar" target="_self">Download</a></div>
<p><span id="more-901"></span><br />
<strong>Jquery Code :</strong></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
   $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#container'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">slideShow</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
        container<span style="color: #339933;">:</span> <span style="color: #3366CC;">'.cont'</span><span style="color: #339933;">,</span>
        items<span style="color: #339933;">:</span> <span style="color: #3366CC;">'.item'</span><span style="color: #339933;">,</span>
        fade<span style="color: #339933;">:</span> <span style="color: #CC0000;">5000</span><span style="color: #339933;">,</span> <span style="color: #009966; font-style: italic;">/* Fading of images */</span>
        transition<span style="color: #339933;">:</span> <span style="color: #CC0000;">4000</span> <span style="color: #009966; font-style: italic;">/* transition of each images */</span>
   <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p><strong><br />
CSS :</strong></p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#container</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">335px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">500px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">overflow</span><span style="color: #00AA00;">:</span><span style="color: #993333;">hidden</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.cont</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">335px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.item</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">500px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">335px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.current</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">2</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p><strong>HTML :</strong></p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;container&quot;</span>&gt;</span>
  <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;cont&quot;</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;item&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;images/3888886475_79f6ec6fa4.jpg&quot;</span> <span style="color: #000066;">width</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;500&quot;</span> <span style="color: #000066;">height</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;335&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;item&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;images/3884814086_ab27bb2f7a.jpg&quot;</span> <span style="color: #000066;">width</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;500&quot;</span> <span style="color: #000066;">height</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;335&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;item&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;images/3884022159_7eca2c92a9.jpg&quot;</span> <span style="color: #000066;">width</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;500&quot;</span> <span style="color: #000066;">height</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;335&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;item&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;images/3884989133_2dd993518a.jpg&quot;</span> <span style="color: #000066;">width</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;500&quot;</span> <span style="color: #000066;">height</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;335&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;item&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;images/3889679176_8efb27feb0.jpg&quot;</span> <span style="color: #000066;">width</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;500&quot;</span> <span style="color: #000066;">height</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;335&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;item&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;images/3888886073_3e962efb9b.jpg&quot;</span> <span style="color: #000066;">width</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;500&quot;</span> <span style="color: #000066;">height</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;335&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;item&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;images/3888886271_6106cd0cd4.jpg&quot;</span> <span style="color: #000066;">width</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;500&quot;</span> <span style="color: #000066;">height</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;335&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span>
  <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.arvindandrion.com/jquery/jquery-image-slideshow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Styling input type file</title>
		<link>http://www.arvindandrion.com/jquery/styling-input-type-file/</link>
		<comments>http://www.arvindandrion.com/jquery/styling-input-type-file/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 13:16:52 +0000</pubDate>
		<dc:creator>Arvind</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://www.arvindandrion.com/?p=704</guid>
		<description><![CDATA[This simple script will help you design your &#60;input type=file &#62; in more attractive way. By overlapping a designed &#60;input type=&#8221;button&#8221; &#62; that will act as browse button and adding another &#60;input type=&#8221;text&#8221; &#62; that will show the value of &#8230;]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-716" title="stylingfileinputtypfile" src="http://www.arvindandrion.com/wp-content/uploads/2010/03/stylingfileinputtypfile.jpg" alt="" width="400" height="98" /></p>
<p>This simple script will help you design your &lt;input type=file &gt; in more attractive way.<br />
By overlapping a designed &lt;input type=&#8221;button&#8221; &gt; that will act as browse button and adding another &lt;input type=&#8221;text&#8221; &gt; that will show the value of the file upload. Using <a href="http://jquery.com" target="_blank">Jquery </a>on <a href="http://api.jquery.com/change/" target="_blank">change()</a> the we can get the value of the &lt;input type=file &gt; and pass it to our &lt;input type=&#8221;text&#8221; &gt;. If your having a hard time to visualizing, you can check the demo or download the file and explore it. Please do check it with <a href="http://getfirebug.com/" target="_blank">firebug</a> so that you can see more clearly.</p>
<div class="demo"><a title="Demo" href="http://www.arvindandrion.com/example/stylingFileInputTypeFile/" target="_blank">Demo</a> | <a title="Download" href="http://www.arvindandrion.com/example/stylingFileInputTypeFile/stylingFileInputTypeFile.rar" target="_self">Download</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.arvindandrion.com/jquery/styling-input-type-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Form Design</title>
		<link>http://www.arvindandrion.com/css/simple-form-design/</link>
		<comments>http://www.arvindandrion.com/css/simple-form-design/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 14:58:41 +0000</pubDate>
		<dc:creator>Arvind</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://www.arvindandrion.com/?p=485</guid>
		<description><![CDATA[Designing form is quite fun, it always makes me think how the user will use it, my colleague developer and I have been doing a new project and that includes their registration form with admin interface. I wanted to share &#8230;]]></description>
			<content:encoded><![CDATA[<p>Designing form is quite fun, it always makes me think how the user will use it, my colleague developer and I  have been doing a new project and that includes their registration form with admin interface. I wanted to share this simple form design. I used style from blueprint css framework. I took some of what I really need, edit some of it and adjust their value. In every project I start I always use blueprint and craft the css I need, this speeds up the time of my development.</p>
<p>When I say simple, it&#8217;s really simple. This is just a form layout with a stupid validation.I actually wanted to use some validation plugin but there is no use for this example because I will only show a simple form anyway.</p>
<div class="demo"><a title="Demo" href="http://www.arvindandrion.com/example/formdesign/" target="_blank">Demo</a> |  <a title="Download" href="http://www.arvindandrion.com/example/formdesign/formdesign.rar" target="_self">Download</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.arvindandrion.com/css/simple-form-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fieldset and Legend in IE</title>
		<link>http://www.arvindandrion.com/css/fieldset-and-legend-in-ie/</link>
		<comments>http://www.arvindandrion.com/css/fieldset-and-legend-in-ie/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 10:48:31 +0000</pubDate>
		<dc:creator>Arvind</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://www.arvindandrion.com/?p=479</guid>
		<description><![CDATA[While I was very happy and I am about to finish my form layout testing in firefox, chrome and safari, I crossed my fingers and took a quick look to check at IE and suddenly BOOOOMMMM! What the hell happened? &#8230;]]></description>
			<content:encoded><![CDATA[<p>While I was very happy and I am about to finish my form layout testing in firefox, chrome and safari, I crossed my fingers and took a quick look to check at IE and suddenly BOOOOMMMM! What the hell happened? Of course it looks like a storm had past by on the site I&#8217;m working on. I was like &#8220;darn this browser!?!&#8221;. I came a cross <a href="http://www.tyssendesign.com.au/articles/css/legends-of-style-revised/" target="_blank">tyssendesign.com.au</a> <strong>Layer of Style</strong> and it helped me a lot.<br />
<span id="more-479"></span></p>
<p>Check out this simple HTML and CSS.</p>

<div class="wp_syntax"><div class="code"><pre class="xhtml" style="font-family:monospace;">&lt;div class=&quot;box one&quot;&gt;
 &lt;fieldset&gt;
  &lt;legend&gt;&lt;span&gt;This is the legend&lt;/span&gt;&lt;/legend&gt;
  &lt;label for=&quot;name&quot;&gt;Name:&lt;/label&gt;
  &lt;input id=&quot;name&quot; name=&quot;name&quot; type=&quot;text&quot; /&gt;
  &lt;label for=&quot;phone&quot;&gt;Phone:&lt;/label&gt;
  &lt;input id=&quot;phone&quot; name=&quot;phone&quot; type=&quot;text&quot; /&gt;
  &lt;label for=&quot;email&quot;&gt;Email:&lt;/label&gt;
  &lt;input id=&quot;email&quot; name=&quot;email&quot; type=&quot;text&quot; /&gt;
  &lt;button&gt;Submit&lt;/button&gt;
 &lt;/fieldset&gt;&lt;/div&gt;</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">fieldset <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
&nbsp;
.box<span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">30em</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">2.5em</span> <span style="color: #933;">1em</span> <span style="color: #933;">0.5em</span> <span style="color: #933;">1em</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#F8F8F8</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;"><span style="color: #cc66cc;">90</span>%</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
label <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
&nbsp;
input <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;"><span style="color: #cc66cc;">50</span>%</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">2px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0.5em</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#00</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
button <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
&nbsp;
legend span <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">29em</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0.5em</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1em</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p><!--more--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.arvindandrion.com/css/fieldset-and-legend-in-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m Stuck in Table Grid</title>
		<link>http://www.arvindandrion.com/css/im-stuck-in-table-grid/</link>
		<comments>http://www.arvindandrion.com/css/im-stuck-in-table-grid/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 10:48:08 +0000</pubDate>
		<dc:creator>Arvind</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[internet explorer]]></category>

		<guid isPermaLink="false">http://www.arvindandrion.com/?p=477</guid>
		<description><![CDATA[If you find yourself stuck in styling your table, checkout HTML and CSS table border style Wizard at Samacon.com, Whew! that&#8217;s a long title isn&#8217;t it? It can help you to design a simple table grid in no time, Samacon helped &#8230;]]></description>
			<content:encoded><![CDATA[<p>If you find yourself stuck in styling your table, checkout <strong>HTML and CSS table border style Wizard</strong> at <strong><a id="nva4" title="Samacon.com" href="http://www.somacon.com/p141.php" target="_blank">Samacon.com</a></strong>, Whew! that&#8217;s a long title isn&#8217;t it? It can help you to design a simple table grid in no time, Samacon helped me solve some bug issues in IE6.  In the case of browser compatibility I think it works best in explorer 6 but it doesn&#8217;t support the border-spacing CSS2 table property and it doesn&#8217;t work in opera and IE5 as well. Check out the site for more browser compatibility.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.arvindandrion.com/css/im-stuck-in-table-grid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
