<?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>Cascading Style Sheets Syntax</title>
	<atom:link href="http://csssyntax.com/feed" rel="self" type="application/rss+xml" />
	<link>http://csssyntax.com</link>
	<description>CSS BASIC REFERENCE</description>
	<lastBuildDate>Wed, 10 Mar 2010 07:38:15 +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>HostGator &#8211; Best Web Hosting</title>
		<link>http://csssyntax.com/hostgator-best-web-hosting.html</link>
		<comments>http://csssyntax.com/hostgator-best-web-hosting.html#comments</comments>
		<pubDate>Sat, 09 Jan 2010 04:03:22 +0000</pubDate>
		<dc:creator>gusdwi</dc:creator>
				<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[web domain]]></category>

		<guid isPermaLink="false">http://csssyntax.com/?p=349</guid>
		<description><![CDATA[HostGator are the perfect choice whether you are looking for business, personal, or even Fortune 500 hosting]]></description>
			<content:encoded><![CDATA[<h2>What&#8217;s HostGator ?</h2>
<p><a href="http://secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=gusdwi" target="_blank"><strong>HostGator</strong></a> is one of the world&#8217;s top 10 largest <strong>web hosting</strong> companies with more than 2,200,000 hosted <strong>domains</strong>. HostGator have over 260 employees to provide you superior around the clock support. HostGator are the perfect choice whether you are looking for business, personal, or even Fortune 500 hosting.</p>
<p>Every <a href="http://secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=gusdwi"><strong>web hosting</strong></a> plan comes with a 45 day money back guarantee, 99.9% uptime guarantee, and is fully guaranteed by the owner himself. If you ever have a problem with the regular support, just ask that your ticket be assigned to Brent and he will personally take the time to give you the VIP attention that you deserve.<a href="http://secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=gusdwi"></a></p>
<p><a href="http://secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=gusdwi"><img class="size-full wp-image-354 alignnone" title="best-web-hosting" src="http://csssyntax.com/wp-content/uploads/2010/01/best-web-hosting.jpg" alt="HostGator best web hosting" width="466" height="471" /></a></p>
<p>Also&#8230;<br />
Hostgator offers <strong>free web hosting</strong> and no charge for companies to nonprofit. Moreover, hostgator offers gifts such as ($ 125,000) Center for Cancer MdAnderson &#8220;</p>
]]></content:encoded>
			<wfw:commentRss>http://csssyntax.com/hostgator-best-web-hosting.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to set Padding with CSS</title>
		<link>http://csssyntax.com/how-to-set-padding-with-css.html</link>
		<comments>http://csssyntax.com/how-to-set-padding-with-css.html#comments</comments>
		<pubDate>Tue, 05 Jan 2010 06:30:36 +0000</pubDate>
		<dc:creator>gusdwi</dc:creator>
				<category><![CDATA[CSS Basic]]></category>
		<category><![CDATA[css code]]></category>
		<category><![CDATA[css style]]></category>
		<category><![CDATA[learn css]]></category>

		<guid isPermaLink="false">http://csssyntax.com/?p=339</guid>
		<description><![CDATA[is a function to set the distance between the border with content on an HTML element.]]></description>
			<content:encoded><![CDATA[<p><strong>Padding</strong> Property, is a function to set the distance between the border with content on an HTML element.<br />
Css padding at crucial point in terms of making web pages, so instead I suggest that you really notice this css syntax.</p>
<p><span id="more-339"></span></p>
<p>In writing of the padding property, almost equal to the <a href="http://csssyntax.com/css-margin.html"><strong>margin property</strong></a> in writing:</p>
<p>1.</p>
<blockquote><p>div#sidebox {padding:10px;}</p></blockquote>
<p>Its purpose is to show that the four sides of the selector sidebox are spaced 10 pixels between the border and content.</p>
<p>2.</p>
<blockquote><p>div#sidebox {padding:10px 20px;}</p></blockquote>
<p>Intent of the code above is to show that the distance between border and content on the top and bottom of the selector sidebox is 10 pixels while on the left and right is 20 pixels.</p>
<p>3.</p>
<blockquote><p>div#sidebox {padding:10px 20px 30px 40px;}</p></blockquote>
<p>or it could be way below:</p>
<blockquote>
<p style="text-align: left;">div#sidebox {padding-top:10px; padding-right:20px;<br />
padding-bottom:30px; padding-left:40px;}</p>
</blockquote>
<p>Intent of the code above is to show that the distance between border and content of the selector sidebox on the top 10 pixels, right 20 pixels, 30 pixels down, and the left is 40 pixels.</p>
<p>4.</p>
<blockquote><p>div#sidebox {padding-top:10px;}</p></blockquote>
<p>Intent of the code above is to show that the distance from the border with the content selector sidebox on the top is 10 pixels, while others limit Default value. And besides padding-top, also with the property padding-right, padding-bottom and padding-left.<em></em></p>
<p>In addition to the units of px (pixels) can also be a unit emphasis (em) or percentages (%), as an example:</p>
<blockquote><p>div#sidebox {padding:1em 2%;}</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://csssyntax.com/how-to-set-padding-with-css.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS 3 Opacity Image</title>
		<link>http://csssyntax.com/how-to-make-opacity-image-using-css-3.html</link>
		<comments>http://csssyntax.com/how-to-make-opacity-image-using-css-3.html#comments</comments>
		<pubDate>Wed, 04 Nov 2009 01:57:07 +0000</pubDate>
		<dc:creator>gusdwi</dc:creator>
				<category><![CDATA[About CSS 3]]></category>
		<category><![CDATA[css 3]]></category>
		<category><![CDATA[css code]]></category>
		<category><![CDATA[learn css]]></category>

		<guid isPermaLink="false">http://csssyntax.com/?p=262</guid>
		<description><![CDATA[Using CSS3, you can create a transparent image with a very easy]]></description>
			<content:encoded><![CDATA[<h3><span style="text-decoration: underline;">How to make Opacity Image using CSS 3 ?</span></h3>
<p>Before there was CSS 3, to get a transparent effect on the image in the browser, the web designers using image transparent PNG format.<br />
You can achieve a similar effect by using the opacity property. Now, the opacity property has been around for a while, but our beloved IE has its own properties.</p>
<p><strong>Example css 3 image opacity:</strong></p>
<pre class="brush:xml">&lt;html&gt;
&lt;head&gt;
  &lt;title&gt; Opacity Image using css3&lt;/title&gt;
  &lt;style type="text/css"&gt;
     .img_opacity {
         opacity: .6; // all modern browsers (this is CSS3)
         -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; // IE 8
         filter: alpha(opacity=60); // IE 5-7
         }
  &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
   &lt;img src="http://localhost/cs3/images/photo6.jpg" width="241" height="228"/&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>The Result:<br />
<img style="opacity: .6;" src="http://gusdwi.info/images/widy-in-besakih.jpg" alt="image opacity" width="232" height="174" /></p>
<p>In modern browsers like Safari, Google Chrome, Firefox, you simply write CSS code like below:</p>
<pre class="brush:css">.img_opacity {
         opacity: .6;
         }</pre>
]]></content:encoded>
			<wfw:commentRss>http://csssyntax.com/how-to-make-opacity-image-using-css-3.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS 3 Background Color Opacity</title>
		<link>http://csssyntax.com/how-to-make-background-color-opacity-using-css3.html</link>
		<comments>http://csssyntax.com/how-to-make-background-color-opacity-using-css3.html#comments</comments>
		<pubDate>Wed, 04 Nov 2009 01:34:53 +0000</pubDate>
		<dc:creator>gusdwi</dc:creator>
				<category><![CDATA[About CSS 3]]></category>
		<category><![CDATA[css 3]]></category>
		<category><![CDATA[learn css]]></category>

		<guid isPermaLink="false">http://csssyntax.com/?p=264</guid>
		<description><![CDATA[Everyone knows what RGB stands for (red, green, blue), but what does the A stand for?]]></description>
			<content:encoded><![CDATA[<h3><span style="text-decoration: underline;">How to make Background Color Opacity using CSS 3 ?</span></h3>
<p>Everyone knows what <strong>RGB</strong> stands for (red, green, blue), but what does the A stand for?<br />
It stands for Alpha, which refers to the <strong>transparency</strong>.</p>
<p>Other than rounded corners, RGBA is my next most used CSS3 property. Sometimes I just want to add a few light white/black background to navigation links when a user hover overs them. It&#8217;s much easier than creating a new image for each color. but using css3 property you can make <strong>background</strong> with <strong>opacity</strong>.</p>
<p><strong>Example css3 background :</strong></p>
<pre class="brush:xml">&lt;html&gt;
&lt;head&gt;
  &lt;title&gt;Background Color Opacity&lt;/title&gt;
  &lt;style type="text/css"&gt;
    .rgba {
       width:200px;
       text-align:center;
       padding:10px;
       background: rgba(239, 182, 29, .50);
       }
  &lt;/style&gt;
&lt;body&gt;
  &lt;div&gt;how to make background color opacity&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>The Result:</p>
<div class="rgba">Background color with opacity</div>
<div class="rgb">Background color opacity none</div>
]]></content:encoded>
			<wfw:commentRss>http://csssyntax.com/how-to-make-background-color-opacity-using-css3.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
