<?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>Flex-Flash-Air-ActionScript-JS &#187; CSS</title>
	<atom:link href="http://blog.totusinfo.com/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.totusinfo.com</link>
	<description>totusinfo team</description>
	<lastBuildDate>Wed, 24 Feb 2010 09:38:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Avoid ugly border around images &amp; links using css</title>
		<link>http://blog.totusinfo.com/how-can-i-avoid-ugly-border-around-images-links-using-css/</link>
		<comments>http://blog.totusinfo.com/how-can-i-avoid-ugly-border-around-images-links-using-css/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 15:36:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[avoid border]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=215</guid>
		<description><![CDATA[Every web developer would come across this issue. In Firefox, when you&#8217;d clicked a image or link there you&#8217;ll see a dotted border around the image or link. It makes ugly to the website. I googled around this issue &#38; found a way to resolve it. If you see the image below you could easily [...]]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/how-can-i-avoid-ugly-border-around-images-links-using-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>email validation using regular expression with PHP</title>
		<link>http://blog.totusinfo.com/email-validation-using-regular-expression-with-php/</link>
		<comments>http://blog.totusinfo.com/email-validation-using-regular-expression-with-php/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 12:05:26 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[ereg]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=862</guid>
		<description><![CDATA[

&#60;?php
if(!empty($_POST['email'])){
	$regularexp = &#34;^[A-Za-z0-9\.&#124;-&#124;_]*[@]{1}[A-Za-z0-9\.&#124;-&#124;_]*[.]{1}[a-z]{2,5}$&#34;;
	$email = $_POST['email'];
	$validemail = ereg($regularexp, $email);
	if ($validemail)
	{
		echo &#34;&#60;div style='color:green;'&#62; &#60;b&#62;'$email'&#60;/b&#62; is a valid email&#60;/div&#62;&#34;;
	}
	else
		echo &#34;&#60;div style='color:red;'&#62; &#60;b&#62;'$email'&#60;/b&#62; is not a valid email&#60;/div&#62;&#34;;
}else{
	echo &#34;&#60;div style='color:red; font-weight:bold;'&#62; Please enter email&#60;/div&#62;&#34;;
}
?&#62;
&#60;html&#62;
	&#60;body&#62;
	&#60;h2&#62;Email Validator&#60;/h2&#62;
	&#60;form method=&#34;post&#34;&#62;
		&#60;div style=&#34;width:50px; font-family:Verdana, Arial, Helvetica, sans-serif; float:left; padding-top:3px;&#34;&#62;
			Email:
		&#60;/div&#62;

		&#60;div style=&#34;width:300px&#34;&#62;
			&#60;input type=&#34;text&#34; name=&#34;email&#34; /&#62;
		&#60;/div&#62;

		&#60;input type=&#34;submit&#34; /&#62;
	&#60;/form&#62;
	&#60;/body&#62;
&#60;/html&#62;

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/email-validation-using-regular-expression-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fly move according to the mouse movement</title>
		<link>http://blog.totusinfo.com/fly-move-according-to-the-mouse-movement/</link>
		<comments>http://blog.totusinfo.com/fly-move-according-to-the-mouse-movement/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 07:45:13 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[atan2]]></category>
		<category><![CDATA[ENTER_FRAME]]></category>
		<category><![CDATA[mouseX]]></category>
		<category><![CDATA[mouseY]]></category>
		<category><![CDATA[rotation]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=860</guid>
		<description><![CDATA[This code shows the movement of the object fly according to the mouse movement


var flySpeed:Number = 0.1;

fly.addEventListener(Event.ENTER_FRAME,flyMove);

function flyMove(event:Event):void {

	var fly_x:Number = (mouseX - fly.x) * flySpeed;
	var fly_y:Number = (mouseY - fly.y) * flySpeed;
	var angle = Math.atan2(fly_y, fly_x);
	fly.x += fly_x;
	fly.y += fly_y;
	fly.rotation = 90 +(angle * 180 / 3.141593E+000);

}











]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/fly-move-according-to-the-mouse-movement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS unicode-bidi  using html</title>
		<link>http://blog.totusinfo.com/css-unicode-bidi-using-html/</link>
		<comments>http://blog.totusinfo.com/css-unicode-bidi-using-html/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 12:03:38 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[bidi-override]]></category>
		<category><![CDATA[direction]]></category>
		<category><![CDATA[rtl]]></category>
		<category><![CDATA[unicode-bidi]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=841</guid>
		<description><![CDATA[This code shows how to display text with different reading directions


&#60;html&#62;
	&#60;body&#62;
		&#60;p style=&#34;direction:rtl;&#34;&#62;
			Text using right to left direction
		&#60;/p&#62;

		&#60;p style=&#34;direction:rtl; unicode-bidi:bidi-override&#34;&#62;
			Text using right to left direction and unicode-bidi
		&#60;/p&#62;
	&#60;/body&#62;
&#60;/html&#62;

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/css-unicode-bidi-using-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
