<?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 &#187; css style</title>
	<atom:link href="http://csssyntax.com/tag/css-style/feed" rel="self" type="application/rss+xml" />
	<link>http://csssyntax.com</link>
	<description>CSS BASIC REFERENCE</description>
	<lastBuildDate>Sat, 31 Jul 2010 08:26:13 +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>How to make Button Emboss using CSS 3</title>
		<link>http://csssyntax.com/how-to-make-button-emboss-using-css-3.html</link>
		<comments>http://csssyntax.com/how-to-make-button-emboss-using-css-3.html#comments</comments>
		<pubDate>Sat, 31 Jul 2010 08:02:35 +0000</pubDate>
		<dc:creator>gusdwi</dc:creator>
				<category><![CDATA[About CSS 3]]></category>
		<category><![CDATA[css 3]]></category>
		<category><![CDATA[css style]]></category>
		<category><![CDATA[Photoshop Tutorials]]></category>

		<guid isPermaLink="false">http://csssyntax.com/?p=634</guid>
		<description><![CDATA[Usually, the web developer or web designer to make buttons embossed with ways to use background image. But with technological advances in the field of web development, has born a new way to create embossed button without using the background image again. CSS 3 is able to make it easier and not have to bother [...]]]></description>
			<content:encoded><![CDATA[<p>Usually, the <strong>web developer</strong> or <strong>web designer</strong> to make <strong>buttons embossed</strong> with ways to use background image.<br />
But  with technological advances in the field of web development, has born a  new way to create embossed button without using the background image  again.</p>
<p>CSS 3 is able to make it easier and not have to bother with useless waste of your time.</p>
<p><a href="http://csssyntax.com/css-3-button-emboss.html">Demo</a></p>
<p>With the syntax below will get a beautiful embossed button:</p>
<blockquote><p>.button{<br />
margin: 0.1em;<br />
text-align:center;<br />
font-family:Geneva, Arial, Helvetica, sans-serif;<br />
font-size:18px;<br />
font-weight:bold;<br />
width:140px;<br />
padding:0.3em;<br />
}</p>
<p>#b1 {<br />
background:#ddd;<br />
border: 8px solid #000;<br />
-moz-border-bottom-colors: #555 #666 #777 #888 #999 #aaa #bbb #ccc;<br />
-moz-border-top-colors: #555 #666 #777 #888 #999 #aaa #bbb #ccc;<br />
-moz-border-left-colors: #555 #666 #777 #888 #999 #aaa #bbb #ccc;<br />
-moz-border-right-colors: #555 #666 #777 #888 #999 #aaa #bbb #ccc;<br />
border-radius: 25px;<br />
-moz-border-radius: 25px;<br />
-webkit-border-radius: 25px;}</p>
<p>#b1 a {<br />
text-decoration:none;<br />
color:#888;}</p>
<p>#b1 a:hover {<br />
color:#555;}</p></blockquote>
<p><strong>Note:</strong> This Way is not support in <strong>IE</strong><br />
<a href="http://csssyntax.com/css-3-button-emboss.html">Example</a></p>
]]></content:encoded>
			<wfw:commentRss>http://csssyntax.com/how-to-make-button-emboss-using-css-3.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>Look <strong>Examples</strong> in below :</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 <strong>border </strong>and <strong>content</strong>.</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 <strong>border</strong> and <strong>content</strong> on the top and <strong>bottom</strong> 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 <strong>border</strong> and <strong>content</strong> 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 <strong>border</strong> with the <strong>content selector</strong> sidebox on the top is 10 pixels, while others limit Default value. And besides padding-top, also with the property padding-right, <strong>padding-bottom</strong> and <strong>padding-left</strong>.</p>
<p>In addition to the units of px <strong>(pixels) </strong>can also be a unit <strong>emphasis</strong> (em) or <strong>percentages</strong> (%), 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 Text Shadow</title>
		<link>http://csssyntax.com/how-to-make-tex-shadow-using-css-3.html</link>
		<comments>http://csssyntax.com/how-to-make-tex-shadow-using-css-3.html#comments</comments>
		<pubDate>Tue, 03 Nov 2009 04:33:33 +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[css style]]></category>

		<guid isPermaLink="false">http://csssyntax.com/?p=260</guid>
		<description><![CDATA[Using CSS3, we can create shadow effects on text with very simple syntax]]></description>
			<content:encoded><![CDATA[<h3><span style="text-decoration: underline;">How to make Text Shadow using CSS 3 ?</span></h3>
<p>Using <strong>HTML Text</strong> and  <strong>CSS3</strong>, we can create <strong>the shadow</strong> effects on text&#8230;<br />
suitable for headings or large text on web pages&#8230;<br />
so, you do not need to change the text into image to get a <strong>shadow effect</strong>.<strong></strong></p>
<p><strong>Example for css3 text shadow:</strong></p>
<pre class="brush:html">&lt;html&gt;
&lt;head&gt;
&lt;title&gt;How to make Font Shadow using CSS 3&lt;/title&gt;
&lt;style type="text/css"&gt;
.fontShadow {
           color: #2178d9;
           font-size: 24px;
            }
.fontShadow {
           text-shadow: 2px 2px 1px #000;
            }
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
   &lt;p&gt;I will show you
   &lt;span&gt;&lt;h1&gt;How to create Text shadow&lt;/h1&gt;&lt;/span&gt;
   &lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p><strong>The Result:</strong></p>
<p>I will show you <span style="color: #2178d9; font-size: 24px; text-shadow: 2px 2px 1px #000;">How to create Text  shadow</span></p>
<p>So, with <strong>css text</strong> you will get a short time to work</p>
]]></content:encoded>
			<wfw:commentRss>http://csssyntax.com/how-to-make-tex-shadow-using-css-3.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s that CSS 3&#8230;?</title>
		<link>http://csssyntax.com/whats-that-css-3.html</link>
		<comments>http://csssyntax.com/whats-that-css-3.html#comments</comments>
		<pubDate>Thu, 29 Oct 2009 04:30:09 +0000</pubDate>
		<dc:creator>gusdwi</dc:creator>
				<category><![CDATA[About CSS 3]]></category>
		<category><![CDATA[css code]]></category>
		<category><![CDATA[css style]]></category>
		<category><![CDATA[learn css]]></category>

		<guid isPermaLink="false">http://csssyntax.com/?p=236</guid>
		<description><![CDATA[CSS3 is the new kid in the stylesheet family. It offers exciting new possibilities...]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve all had to achieve some effect that required an extra handful of <a href="http://csssyntax.com/css-div.html">divs</a> or PNGs. We shouldn&#8217;t be limited to these old techniques when there&#8217;s a new age coming. This new age includes the use of CSS3. In today&#8217;s tutorial, I&#8217;ll show you eleven different time-consuming effects that can be achieved quite easily with CSS3.</p>
<p>I&#8217;m sure you&#8217;ve heard of <a href="http://csssyntax.com/css-syntax.html">CSS in general</a>. CSS3 isn&#8217;t that much different, in terms of syntax; however, the power of CSS3 is much greater. As you&#8217;ll see in these eleven techniques, you can have multiple backgrounds, dynamically resize those backgrounds, border radiuses, text shadows, and more!</p>
<p>CSS3 is the new kid in the stylesheet family. It offers exciting new possibilities to create an impact with your designs, allows you to use more diverse style sheets for a variety of occasions and lots more.</p>
<h2>What We&#8217;ll Be Covering</h2>
<p>Here are the 11 techniques that I&#8217;ll be showing you how to recreate with CSS3. I&#8217;ll show you how to create them using CSS 3 without   JavaScript 0r JQuery, . Remember &#8211; these effects will only work in modern browsers that implement these CSS3 features. Your best option is to view these with Safari 4, firefox 3.5.3-upper, Google Chrome.</p>
<ol>
<li> <a href="http://csssyntax.com/how-to-make-rounded-corners-using-css-3.html" target="_blank">CSS 3 Rounded Corners</a></li>
<li> <a href="http://csssyntax.com/how-to-make-box-shadow-using-css-3.html" target="_blank">CSS 3 Box Shadow</a></li>
<li><a href="http://csssyntax.com/how-to-make-tex-shadow-using-css-3.html" target="_blank">CSS 3 Text Shadow</a></li>
<li><a href="http://csssyntax.com/how-to-make-opacity-image-using-css-3.html" target="_blank">CSS 3 Fancy Font</a></li>
<li><a href="http://nettuts.s3.amazonaws.com/430_cssTips/demo/opacity.html" target="_blank">CSS 3 Opacity</a></li>
<li> <a href="http://csssyntax.com/how-to-make-background-color-opacity-using-css3.html" target="_blank">CSS 3 RGBA/ CSS 3 background</a></li>
<li> <a href="http://nettuts.s3.amazonaws.com/430_cssTips/demo/bgsize.html" target="_blank">CSS 3 Background Size</a></li>
<li><a href="http://nettuts.s3.amazonaws.com/430_cssTips/demo/bgs.html" target="_blank">CSS 3 Multiple Backgrounds</a></li>
<li><a href="http://nettuts.s3.amazonaws.com/430_cssTips/demo/columns.html" target="_blank">CSS 3 Columns</a></li>
<li><a href="http://nettuts.s3.amazonaws.com/430_cssTips/demo/border.html" target="_blank">CSS 3 Border Image</a></li>
<li><a href="http://nettuts.s3.amazonaws.com/430_cssTips/demo/animation.html" target="_blank">CSS 3 Animations</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://csssyntax.com/whats-that-css-3.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
