<?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 tutorials</title>
	<atom:link href="http://csssyntax.com/tag/css-tutorials/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>CSS 3 Box Shadow</title>
		<link>http://csssyntax.com/how-to-make-box-shadow-using-css-3.html</link>
		<comments>http://csssyntax.com/how-to-make-box-shadow-using-css-3.html#comments</comments>
		<pubDate>Tue, 03 Nov 2009 01:45:11 +0000</pubDate>
		<dc:creator>gusdwi</dc:creator>
				<category><![CDATA[About CSS 3]]></category>
		<category><![CDATA[css 3]]></category>
		<category><![CDATA[css tutorials]]></category>
		<category><![CDATA[learn css]]></category>

		<guid isPermaLink="false">http://csssyntax.com/?p=258</guid>
		<description><![CDATA[Excess CSS3 is able to make something that can not be done by CSS2]]></description>
			<content:encoded><![CDATA[<h3><span style="text-decoration: underline;">How to make Box Shadow using CSS 3</span></h3>
<p>Excess CSS3 is able to make something that can not be done by CSS2, which usually only be done by using javascript or jQuery assistance with writing complex code. but CSS3 able to turn it into a simple form. Like the way I made following the how to create a <strong>Box shadow</strong> using the CSS3.</p>
<p><strong>Example for css3 box shadow:</strong></p>
<pre class="brush:xml">&lt;html&gt;
&lt;head&gt;
&lt;title&gt;How to make Box Shadow using CSS 3&lt;/title&gt;
&lt;style type="text/css"&gt;
.boxShadow {
          box-shadow: 5px 5px 2px black;
          -moz-box-shadow: 5px 5px 2px black;
          -webkit-box-shadow: 5px 5px 2px black;
          width:200px;
          padding:5px;
          text-align:center;
          background:#dddddd;
          border:solid 1px #666666;
          }
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
   &lt;div&gt;
      &lt;h2&gt;How to make Box Shadow using CSS 3&lt;/h2&gt;
   &lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p><strong>The Result:</strong></p>
<div style="box-shadow: 5px 5px 2px black; -moz-box-shadow: 5px 5px 2px black; -webkit-box-shadow: 5px 5px 2px black; width:200px; padding:5px; text-align:center; background:#dddddd; border:solid 1px #666666;">
<h2>How to make Box Shadow using CSS 3</h2>
</div>
<p><strong>Note:</strong> This tutorial applies only to modern browsers such as Mozilla v 3.5.3 and above, safari, Google chrome</p>
]]></content:encoded>
			<wfw:commentRss>http://csssyntax.com/how-to-make-box-shadow-using-css-3.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS 3 Rounded Corners</title>
		<link>http://csssyntax.com/how-to-make-rounded-corners-using-css-3.html</link>
		<comments>http://csssyntax.com/how-to-make-rounded-corners-using-css-3.html#comments</comments>
		<pubDate>Tue, 03 Nov 2009 01:22:04 +0000</pubDate>
		<dc:creator>gusdwi</dc:creator>
				<category><![CDATA[About CSS 3]]></category>
		<category><![CDATA[css 3]]></category>
		<category><![CDATA[css tutorials]]></category>
		<category><![CDATA[learn css]]></category>

		<guid isPermaLink="false">http://csssyntax.com/?p=257</guid>
		<description><![CDATA[With CSS 3, We can create Rounded Corners/borders can make like css code below:]]></description>
			<content:encoded><![CDATA[<h3><span style="text-decoration: underline;">How to make Rounded Corners using CSS 3 ?</span></h3>
<p>Using <strong>css 3 property</strong>, you can create a button with <strong>rounded corners </strong>or<strong> Borders</strong> in a matter of seconds, without having to use the image, which will spend a lot of your time.</p>
<p>With CSS 3, We can create <strong>Rounded Corners</strong> like css code below:</p>
<pre class="brush:xml">&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Rounded Corner using CSS 3&lt;/title&gt;
&lt;style type="text/css"&gt;
  .rounded {
           width:200px;
           padding:5px;
           text-align:center;
           background:#dddddd;
           border:solid 1px #666666;
           border-radius: 10px;
           -moz-border-radius: 10px;
           -webkit-border-radius: 10px;
           }
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
   &lt;div class="rounded"&gt;
      &lt;h1&gt;How to make Rounded Corner using CSS 3&lt;/h1&gt;
   &lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>As you can see, all that you need to do is specify three CSS3 properties. Eventually, it will only be one; you have to use three now because different browsers use different property names.</p>
<p><strong>The Result :</strong></p>
<div style="width: 200px; padding: 5px; text-align: center; background: none repeat scroll 0% 0% #dddddd; border: 1px solid #666666;  -moz-border-radius: 10px;-webkit-border-radius: 10px;">
<h3>How to make Rounded Corner using CSS 3</h3>
</div>
]]></content:encoded>
			<wfw:commentRss>http://csssyntax.com/how-to-make-rounded-corners-using-css-3.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Menu Generator</title>
		<link>http://csssyntax.com/create-drop-down-menu-with-free-css-menu-generator.html</link>
		<comments>http://csssyntax.com/create-drop-down-menu-with-free-css-menu-generator.html#comments</comments>
		<pubDate>Tue, 20 Oct 2009 04:30:24 +0000</pubDate>
		<dc:creator>gusdwi</dc:creator>
				<category><![CDATA[References]]></category>
		<category><![CDATA[css tutorials]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://csssyntax.com/?p=199</guid>
		<description><![CDATA[With this CSS Tool you can generate horizontal or vertical  drop-down (pull-down) menus.]]></description>
			<content:encoded><![CDATA[<p>CSS Menu Generator is another WYSIWYG (what you see is what you get) menu generator. What is the biggest difference with the others?: it generates XHTML, CSS and Javascript code compliant with the <a href="http://www.w3.org/" target="blank">standard W3C</a> specifications. This is very important if you want to make professional designs. Interface is pretty nice and easy to understand. <span id="more-199"></span>You just need a few minutes to make a nice menu, either <strong>horizontal</strong>, <strong>vertical</strong> and <strong>drop-down</strong> (combo-box) menus.</p>
<p>To generate your menu, just add menu items, select menu type, color and font settings, then copy the CSS/JavaScript and XHTML menu code and paste it in your page. XHTML code is very important for search engines. They leave pages in last positions if the code is not SEO friendly. If you want to make professional and fast designs, consider adding this software to your tool set. On the other hand, the preview only works in the interface. You just don&#8217;t know how the menu will look in the browser until you copy and paste the generated code. Besides, it will be nice if you could input the menu item link directly in the interface. Right now, you have to edit the links manually.</p>
<p>If you want your job to be more easy, you can use that freeware below:</p>
<p><a title="CSS Menu Generator" href="http://www.wonderwebware.com/css-menu/" target="_blank"><span class="linkheading">Css Menu Generator 4.0</span></a><br />
With this version of the tool you can generate horizontal<br />
or vertical  drop-down (pull-down) menus.<br />
<span class="postmetadata">www.wonderwebware.com</span></p>
]]></content:encoded>
			<wfw:commentRss>http://csssyntax.com/create-drop-down-menu-with-free-css-menu-generator.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS menu on all browser</title>
		<link>http://csssyntax.com/create-css-menu-compatible-on-all-browser.html</link>
		<comments>http://csssyntax.com/create-css-menu-compatible-on-all-browser.html#comments</comments>
		<pubDate>Tue, 20 Oct 2009 04:26:00 +0000</pubDate>
		<dc:creator>gusdwi</dc:creator>
				<category><![CDATA[References]]></category>
		<category><![CDATA[css menu]]></category>
		<category><![CDATA[css tutorials]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://csssyntax.com/?p=195</guid>
		<description><![CDATA[CSS Tab Designer is an easy to use program that will help you design css-based lists and tabs visually.]]></description>
			<content:encoded><![CDATA[<h3><span style="text-decoration: underline;">How to Create CSS menu compatible on all browser ?</span></h3>
<p>A web designer may have to be stressful because of CSS,  especially when making menu tab on the web page. In Firefox is good but on IE 6 to be ruined.  I myself have experienced such a case to make me stress, and finally to the efforts and hard work, I found a software / freeware, called <strong>CSS Tab Designer.<span id="more-195"></span></strong> I have to say that I was pleasantly surprised with the interface of this program. Pretty nice and easy to use, and the most important thing, it generates strict xhtml compliant code. That means you can be sure that your web site will be seen in any browser in the same way.  Another important feature is that you can edit the generated code to customize some properties when needed. Only one features is not present in the interface, you can&#8217;t make sub menus, which is a pity and sometimes needed, but you can make similar sub menus based on the original without too much effort.  You can Download <strong>CSS Tab for Web Designer</strong> here:  <a title="Css Tab for Web Designer" href="http://www.highdots.com/download.html" target="_blank"><span class="linkheading">CSS Tab  Designer 2.0</span></a> CSS Tab Designer is an easy to use program that will help you design css-based lists and tabs visually. <span class="postmetadata">www.highdots.com</span></p>
]]></content:encoded>
			<wfw:commentRss>http://csssyntax.com/create-css-menu-compatible-on-all-browser.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
