<?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>ForDevs &#187; HTML</title>
	<atom:link href="http://www.fordevs.com/category/designing/html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fordevs.com</link>
	<description>We Learn We Share</description>
	<lastBuildDate>Tue, 25 May 2010 17:19:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Click Label to Access Form Control</title>
		<link>http://www.fordevs.com/2008/12/click-label-to-access-form-control.html</link>
		<comments>http://www.fordevs.com/2008/12/click-label-to-access-form-control.html#comments</comments>
		<pubDate>Wed, 03 Dec 2008 17:37:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/12/click-label-to-access-form-control.html</guid>
		<description><![CDATA[1.Using the label element allows the user to click on the text associated with the form control instead of having to click the radio button, check box, select box, etc. 2.To associate a label with another control implicitly, the control element must be within the contents of the Label element. In this case, the Label [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/12/click-label-to-access-form-control.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Set textbox background color when clicked</title>
		<link>http://www.fordevs.com/2008/10/how-to-set-textbox-background-color-in.html</link>
		<comments>http://www.fordevs.com/2008/10/how-to-set-textbox-background-color-in.html#comments</comments>
		<pubDate>Sun, 19 Oct 2008 11:03:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[textbox background]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/10/set-textbox-background-color-when-clicked.html</guid>
		<description><![CDATA[To set the background color of the textbox, use the &#8216;backgroundColor&#8217; property. eg. &#60;input type=&#34;text&#34; style='background:#fce09a' value='www.fordevs.com'&#62; If you want to set the background color on text focus then use the &#8216;onfocus&#8217; event. The following example illustrates you how to set the color in &#8216;onfocus&#8217; event. When the texbox loses the focus then normal background [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/10/how-to-set-textbox-background-color-in.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make DIV position same for different resolution?</title>
		<link>http://www.fordevs.com/2008/10/how-to-make-div-position-same-for_06.html</link>
		<comments>http://www.fordevs.com/2008/10/how-to-make-div-position-same-for_06.html#comments</comments>
		<pubDate>Mon, 06 Oct 2008 12:20:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/10/how-to-make-div-position-same-for-different-resolution.html</guid>
		<description><![CDATA[To make DIV position same for different resolution, we should make the div style property position to absolute.zzzEx : &#60;div style=&#8221;position:absolute; top:100px; left:200px; background-color:Gray; font-size:12px; color:White; font-family:Arial; height:45px&#8221;&#62; &#8230;. &#8230;.&#60;/div&#62;]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/10/how-to-make-div-position-same-for_06.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Text Over a SWF?</title>
		<link>http://www.fordevs.com/2008/10/how-to-text-over-swf.html</link>
		<comments>http://www.fordevs.com/2008/10/how-to-text-over-swf.html#comments</comments>
		<pubDate>Mon, 06 Oct 2008 12:20:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/10/how-to-text-over-a-swf.html</guid>
		<description><![CDATA[To text over a SWF,we should use the &#8220;wmode&#8221; in object embed tab as &#8220;opaque&#8221;.By doing this we get the html text overlapping the swf content in the page at same position. Coding : &#60;object classid=&#8221;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&#8243; codebase=&#8221;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0&#8243; width=&#8221;300&#8243; height=&#8221;150&#8243; id=&#8221;s&#8221; align=&#8221;middle&#8221;&#62; &#60;param name=&#8221;allowScriptAccess&#8221; value=&#8221;sameDomain&#8221; /&#62; &#60;param name=&#8221;allowFullScreen&#8221; value=&#8221;false&#8221; /&#62; &#60;param name=&#8221;movie&#8221; value=&#8221;s.swf&#8221; /&#62; &#60;param name=&#8221;quality&#8221; [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/10/how-to-text-over-swf.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
