<?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>IT Blog &#187; CSS</title>
	<atom:link href="http://blog.thuongtin.net/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.thuongtin.net</link>
	<description>php, sql, autoit, javascript, c, html</description>
	<lastBuildDate>Tue, 15 Sep 2009 00:57:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Một số Flugin của JQuery trang trí cho form</title>
		<link>http://blog.thuongtin.net/2008/11/04/mot-so-flugin-cua-jquery-trang-tri-cho-form/</link>
		<comments>http://blog.thuongtin.net/2008/11/04/mot-so-flugin-cua-jquery-trang-tri-cho-form/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 01:43:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Form]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://thuongtin.net/blog/?p=296</guid>
		<description><![CDATA[Một số Flugin của JQuery trang trí cho form.
1. Justify elements using jQuery and CS.
Trang chủ
2. File Style.
Demo
Homepage
Related Posts:Các trang web cho nén javascriptjQuery: Cơ bảnHàm check Page Rank của googleAutoCompleter Tutorial - jQuery(Ajax)/PHP/MySQLClass Grab Yahoo]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">Một số Flugin của JQuery trang trí cho form.</p>
<p>1. Justify elements using jQuery and CS.<br />
<a href="http://www.jankoatwarpspeed.com/post/2008/07/09/Justify-elements-using-jQuery-and-CSS.aspx" target="_blank">Trang chủ</a></p>
<p>2. File Style.<br />
<a href="http://www.appelsiini.net/projects/filestyle/demo.html" target="_blank">Demo</a><br />
<a href="http://www.appelsiini.net/projects/filestyle" target="_blank">Homepage</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.thuongtin.net/2008/11/13/cac-trang-web-cho-nen-javascript/" rel="bookmark">Các trang web cho nén javascript</a></li><li><a href="http://blog.thuongtin.net/2008/10/10/jquery-co-ban/" rel="bookmark">jQuery: Cơ bản</a></li><li><a href="http://blog.thuongtin.net/2008/10/22/ham-check-page-rank-cua-google/" rel="bookmark">Hàm check Page Rank của google</a></li><li><a href="http://blog.thuongtin.net/2008/10/20/autocompleter-tutorial-jqueryajaxphpmysql/" rel="bookmark">AutoCompleter Tutorial - jQuery(Ajax)/PHP/MySQL</a></li><li><a href="http://blog.thuongtin.net/2008/10/24/class-grab-yahoo/" rel="bookmark">Class Grab Yahoo</a></li></ul></div><img src="http://blog.thuongtin.net/?ak_action=api_record_view&id=296&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.thuongtin.net/2008/11/04/mot-so-flugin-cua-jquery-trang-tri-cho-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 mẫu Regular Expressions hữu ích</title>
		<link>http://blog.thuongtin.net/2008/10/18/8-mau-regular-expressions-huu-ich/</link>
		<comments>http://blog.thuongtin.net/2008/10/18/8-mau-regular-expressions-huu-ich/#comments</comments>
		<pubDate>Sat, 18 Oct 2008 02:15:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[Source]]></category>

		<guid isPermaLink="false">http://thuongtin.net/blog/?p=202</guid>
		<description><![CDATA[Tên truy cập
Chỉ chấp nhận chữ cái thường, chữ cái viết hoa, số 0-9, và gạch chân.

$string = &#34;userNaME123456789_&#34;;
if (preg_match('/^[a-z\d_]{023456789}$/i', $string)) {
echo &#34;example 1 successful.&#34;;
}

Số điện thoại
Số điện thoại có dạng : (###)###-####

$string = &#34;(032)555-5555&#34;;
if (preg_match('/^(\(?[2-9]{1}[0-9]{2}\)?&#124;[0-9]{3,3}[-. ]?)[ ][0-9]{3,3}[-. ]?[0-9]{4,4}$/', $string)) {
echo &#34;example 2 successful.&#34;;
}

Địa chỉ Email

$string = &#34;first.last@domain.co.uk&#34;;
if (preg_match(
'/^[^0-9][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[@][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[.][a-zA-Z]{2,4}$/',
$string)) {
echo &#34;example 3 successful.&#34;;
}

Mã Postal

$string = ]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first"><strong><span style="color: red;">Tên truy cập</span></strong><br />
Chỉ chấp nhận chữ cái thường, chữ cái viết hoa, số 0-9, và gạch chân.</p>
<pre class="brush: php;">
$string = &quot;userNaME123456789_&quot;;
if (preg_match('/^[a-z\d_]{023456789}$/i', $string)) {
echo &quot;example 1 successful.&quot;;
}
</pre>
<p><span style="color: red;"><strong>Số điện thoại</strong></span><br />
Số điện thoại có dạng : (###)###-####</p>
<pre class="brush: php;">
$string = &quot;(032)555-5555&quot;;
if (preg_match('/^(\(?[2-9]{1}[0-9]{2}\)?|[0-9]{3,3}[-. ]?)[ ][0-9]{3,3}[-. ]?[0-9]{4,4}$/', $string)) {
echo &quot;example 2 successful.&quot;;
}
</pre>
<p><strong><span style="color: red;">Địa chỉ Email</span></strong></p>
<pre class="brush: php;">
$string = &quot;first.last@domain.co.uk&quot;;
if (preg_match(
'/^[^0-9][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[@][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[.][a-zA-Z]{2,4}$/',
$string)) {
echo &quot;example 3 successful.&quot;;
}
</pre>
<p><span style="color: red;"><strong>Mã Postal</strong></span></p>
<pre class="brush: php;">
$string = &quot;55324-4324&quot;;
if (preg_match('/^[0-9]{5,5}([- ]?[0-9]{4,4})?$/', $string)) {
echo &quot;example 4 successful.&quot;;
}
</pre>
<p><span style="color: red;"><strong>Địa chỉ ip</strong></span></p>
<pre class="brush: php;">
$string = &quot;255.255.255.0&quot;;
if (preg_match(
'^(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:[.](?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}

,
$string)) {
echo &quot;example 5 successful.&quot;;

}
</pre>
<p><strong><span style="color: red;">Mã màu hexadecimal</span></strong><br />
Dạng :#333333, #333.</p>
<pre class="brush: php;">
$string = &quot;#666666&quot;;
if (preg_match('/^#(?:(?:[a-f\d]{3}){1,2})$/i', $string)) {
echo &quot;example 6 successful.&quot;;
}
</pre>
<p><strong><span style="color: red;">Comment nhiều dòng</span></strong><br />
Comment dạng :<br />
/*<br />
* text here<br />
*/<br />
Thường dùng trong php, css&#8230;</p>
<pre class="brush: php;">
$string = &quot;/* commmmment */&quot;;
if (preg_match('/^[(/*)+.+(*/)]$/', $string)) {
echo &quot;example 7 successful.&quot;;
}
</pre>
<p><span style="color: red;"><strong>Ngày</strong></span><br />
Ngày dạng MM/DD/YYYY</p>
<pre class="brush: php;">
$string = &quot;10/15/2007&quot;;
if (preg_match('/^\d{1,2}\/\d{1,2}\/\d{4}$/', $string)) {
echo &quot;example 8 successful.&quot;;
}
</pre>
<p>(Sưu tầm)</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.thuongtin.net/2009/07/03/js-object-math/" rel="bookmark">[ JS Object ] Math</a></li><li><a href="http://blog.thuongtin.net/2008/10/10/lay-link-nct-nhaccuatuicom/" rel="bookmark">Lấy link NCT (nhaccuatui.com)</a></li><li><a href="http://blog.thuongtin.net/2008/10/10/ngan-chan-trinh-duyet-khi-duyet-website-cua-minh/" rel="bookmark">Ngăn chặn Trình duyệt khi duyệt website của mình</a></li><li><a href="http://blog.thuongtin.net/2009/04/21/14-loi-khuyen-cua-ong-iec-haramis/" rel="bookmark">14 lời khuyên của ông I.E.C. Haramis</a></li><li><a href="http://blog.thuongtin.net/2008/10/15/autoit-cau-truc-la/" rel="bookmark">[AutoIT] Cấu trúc lặp</a></li></ul></div><img src="http://blog.thuongtin.net/?ak_action=api_record_view&id=202&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.thuongtin.net/2008/10/18/8-mau-regular-expressions-huu-ich/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opacity Hack</title>
		<link>http://blog.thuongtin.net/2008/09/14/opacity-hack/</link>
		<comments>http://blog.thuongtin.net/2008/09/14/opacity-hack/#comments</comments>
		<pubDate>Sun, 14 Sep 2008 08:37:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://thuongtin.net/blog/?p=121</guid>
		<description><![CDATA[Sets the opacity of an element and its children. Doesn&#8217;t validate. Mozilla began supporting the opacity rule in version 1.7, so &#8216;-moz-opacity&#8217; may not be necessary&#8230;

selector {
filter: alpha(opacity=60); /* MSIE/PC */
-moz-opacity: 0.6; /* Mozilla 1.6 and older */
opacity: 0.6;
}

Related Posts:Firefox - Command Line OptionsYahoo Messenger APIjQuery: Khả năng liên kết thành chuỗi (một phép thuật ]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">Sets the opacity of an element and its children. Doesn&#8217;t validate. Mozilla began supporting the opacity rule in version 1.7, so &#8216;-moz-opacity&#8217; may not be necessary&#8230;</p>
<pre class="brush: css;">
selector {
filter: alpha(opacity=60); /* MSIE/PC */
-moz-opacity: 0.6; /* Mozilla 1.6 and older */
opacity: 0.6;
}
</pre>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.thuongtin.net/2009/06/07/firefox-command-line-options/" rel="bookmark">Firefox - Command Line Options</a></li><li><a href="http://blog.thuongtin.net/2008/10/22/yahoo-messenger-api/" rel="bookmark">Yahoo Messenger API</a></li><li><a href="http://blog.thuongtin.net/2008/10/10/jquery-kha-nang-lien-ket-thanh-chuoi-mot-phep-thuat-jquery/" rel="bookmark">jQuery: Khả năng liên kết thành chuỗi (một phép thuật jQuery)</a></li><li><a href="http://blog.thuongtin.net/2008/10/10/ngan-chan-trinh-duyet-khi-duyet-website-cua-minh/" rel="bookmark">Ngăn chặn Trình duyệt khi duyệt website của mình</a></li><li><a href="http://blog.thuongtin.net/2008/09/10/class-curl/" rel="bookmark">Class Curl</a></li></ul></div><img src="http://blog.thuongtin.net/?ak_action=api_record_view&id=121&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.thuongtin.net/2008/09/14/opacity-hack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
