<?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 3</title>
	<atom:link href="http://csssyntax.com/tag/css-3/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 make multiple Background</title>
		<link>http://csssyntax.com/how-to-make-multiple-background-using-css-3.html</link>
		<comments>http://csssyntax.com/how-to-make-multiple-background-using-css-3.html#comments</comments>
		<pubDate>Fri, 30 Jul 2010 01:06:47 +0000</pubDate>
		<dc:creator>gusdwi</dc:creator>
				<category><![CDATA[About CSS 3]]></category>
		<category><![CDATA[css 3]]></category>
		<category><![CDATA[css background]]></category>

		<guid isPermaLink="false">http://csssyntax.com/?p=334</guid>
		<description><![CDATA[Multiple Background Using CSS 3 Using CSS 3, we can create multiple background image on an website in one div&#8230; Here is a very simple example showing the use of multiple background images in one div. Is this the end of nested elements with tons of CSS to create a layered effect? Hope so&#8230; This [...]]]></description>
			<content:encoded><![CDATA[<h3><span style="text-decoration: underline;">Multiple Background Using CSS 3</span></h3>
<p>Using CSS 3, we can create <strong>multiple background image</strong> on an website in one div&#8230;</p>
<p>Here is a very simple example showing the use of <strong>multiple background images</strong> in one <a href="http://csssyntax.com/css-div.html"><strong>div</strong></a>.<br />
Is this the end of nested elements with tons of CSS to create a layered effect? Hope so&#8230;</p>
<p>This is the <strong>syntax of CSS</strong> about multiple background  image:</p>
<blockquote><p>#multipleBG {<br />
border: 5px solid #cccccc;<br />
background:url(img1) top left no-repeat, url(img2) bottom left no-repeat, url(img3) bottom right no-repeat;<br />
padding: 15px 25px;<br />
height: inherit;<br />
width: 590px;<br />
}</p></blockquote>
<p><strong>Browser Support: </strong><br />
FireFox 3.6 and later, Google Chrome 1.0, Opera 9.6, Safari 3.2.1</p>
<p><a href="http://www.css3.com/examples/css3-multiple-backgrounds.php">EXAMPLE</a></p>
]]></content:encoded>
			<wfw:commentRss>http://csssyntax.com/how-to-make-multiple-background-using-css-3.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Increased Support for CSS3 on firefox 4 beta</title>
		<link>http://csssyntax.com/increased-support-for-css3-on-firefox-4-beta.html</link>
		<comments>http://csssyntax.com/increased-support-for-css3-on-firefox-4-beta.html#comments</comments>
		<pubDate>Sat, 17 Jul 2010 03:42:43 +0000</pubDate>
		<dc:creator>gusdwi</dc:creator>
				<category><![CDATA[About CSS 3]]></category>
		<category><![CDATA[css 3]]></category>
		<category><![CDATA[web developer]]></category>

		<guid isPermaLink="false">http://csssyntax.com/?p=347</guid>
		<description><![CDATA[The first public beta of the forthcoming Firefox 4 browser has been released bringing increased support for CSS3 amongst various other improvements. One of the most notable new additions in Firefox 4 is support for CSS3 Transitions (with the -moz- prefix). Webkit based browsers (such as Safari / Chrome) and Opera have supported CSS3 Transitions [...]]]></description>
			<content:encoded><![CDATA[<p>The first public beta of the forthcoming <a href="http://www.mozilla.com/firefox/beta/" target="_blank">Firefox 4</a> browser has been released bringing increased support for CSS3 amongst  various other improvements.</p>
<p>One of the most notable new additions in Firefox 4 is support for <a href="http://www.w3.org/TR/css3-transitions/" target="_blank">CSS3  Transitions</a> (with the -moz- prefix). Webkit based browsers (such as  Safari / Chrome) and Opera have supported CSS3 Transitions for some  time, <a href="http://www.css3.info/webkit-introduce-more-new-features/">almost  three years</a> in Webkit’s case, and it is reassuring to see that  Mozilla have finally made an effort to catch up with the competition in  this area.</p>
<p><a href="http://www.mozilla.com/firefox/beta/" target="_blank"><img title="Firefox 4 Screenshot" src="http://www.css3.info/wp-content/uploads/2010/07/firefox4-535.jpg" alt="Firefox 4 Screenshot" /></a></p>
<p>According to the Mozilla Hacks blog;</p>
<blockquote><p>This beta release contains a nearly complete  implementation of CSS Transitions, privately namespaced with a -moz  prefix. The only big things left here are the animation of transforms  and gradients. (Gradients is still waiting on working group feedback,  code for transitions is under review.)</p></blockquote>
<p>You can read more on Mozilla’s implementation of CSS3 Transitions on  the <a href="https://developer.mozilla.org/en/CSS/CSS_transitions" target="_blank">Mozilla Developer Center</a> along with several  examples.</p>
<h3>What Else is New?</h3>
<p>Firefox 4 also brings several other improvements/changes in terms of  CSS3 support including:</p>
<p>* Resizable textarea Elements – Textarea elements are now resizable  by default. You can use the -moz-resize  property to change the default.</p>
<p>* New CSS3 calc() support – This beta includes support for the new  CSS3 calc() value. This lets you specify sizes that include a  combination of percentages and absolute values and is hugely popular  with developers. More info <a href="http://hacks.mozilla.org/2010/06/css3-calc/" target="_blank">here</a>.</p>
<p>* Selecting a section of a background image – You can now use the new  -moz-image-rect selector to select only a section of a background for  display.</p>
<p>* Removed support for -moz-background-size – The -moz-background-size  property has been renamed to its final background-size name.  -moz-background-size is no longer supported.</p>
<p>* Privacy and the :visited selector – Implementation of changes,  announced in March, with regard to what information can be obtained  about the style of visited links using CSS selectors. This may affect  some web applications. More information <a href="http://hacks.mozilla.org/2010/03/privacy-related-changes-coming-to-css-vistited/" target="_blank">here</a>.</p>
<p>In addition to the above, Mozilla have also added a new -moz-any  selector. Although not part of the CSS3 specification, -moz-any is a  powerful selector that lets you replace large and complicated selectors  with much smaller ones. More details can be found on the <a href="http://hacks.mozilla.org/2010/05/moz-any-selector-grouping/" target="_blank">Mozilla Hacks</a> blog.</p>
<p>You can read more on <a href="http://blog.mozilla.com/blog/2010/07/06/firefox-4-beta-1-tell-us-what-you-think/" target="_blank">The Mozilla Blog</a> or <a href="http://hacks.mozilla.org/2010/07/firefox-4-beta-1-is-here-whats-in-it-for-web-developers/" target="_blank">Mozilla Hacks</a> and, if you haven’t already, you can  download the beta release <a href="http://www.mozilla.com/firefox/beta/" target="_blank">here</a>.</p>
<p>Mozilla have promised a new beta release every two to three weeks.</p>
]]></content:encoded>
			<wfw:commentRss>http://csssyntax.com/increased-support-for-css3-on-firefox-4-beta.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS 3 Borders Image Background</title>
		<link>http://csssyntax.com/css-3-borders-image-background.html</link>
		<comments>http://csssyntax.com/css-3-borders-image-background.html#comments</comments>
		<pubDate>Fri, 23 Apr 2010 01:39:54 +0000</pubDate>
		<dc:creator>gusdwi</dc:creator>
				<category><![CDATA[About CSS 3]]></category>
		<category><![CDATA[css 3]]></category>
		<category><![CDATA[css border]]></category>

		<guid isPermaLink="false">http://csssyntax.com/?p=531</guid>
		<description><![CDATA[How to create borders style using image ? Another exciting new border feature of CSS3 is the property border-image. With this feature you can define an image to be used instead of the normal border of an element. This feature is actually split up into a couple of properties: border-image and border-corner-image. These two values [...]]]></description>
			<content:encoded><![CDATA[<h3 style="text-decoration:underline;">How to  create borders style using image ?</h3>
<p>Another exciting new border feature of CSS3 is the property border-image. With this feature you can define an image to be used instead of the normal border of an element. This feature is actually split up into a couple of properties: border-image and border-corner-image. These two values are shorthands for:</p>
<ul>
<li><strong>border-image</strong>:
<ul>
<li>border-top-image</li>
<li>border-right-image</li>
<li>border-bottom-image</li>
<li>border-left-image</li>
</ul>
</li>
</ul>
<ul>
<li><strong>border-corner-image</strong>:
<ul>
<li>border-top-left-image</li>
<li>border-top-right-image</li>
<li>border-bottom-left-image</li>
<li>border-bottom-right-image</li>
</ul>
</li>
</ul>
<p>border-image currently works in Safari and Firefox 3.1 (Alpha). The syntax to use it is:</p>
<blockquote><p>border-image: url(border.png) 27 27 27 27 round round;</p></blockquote>
<p>Which results in:</p>
<p id="border-image-1">Lorem ipsum dolor sit amet.</p>
<p>or</p>
<blockquote><p>border-image: url(border.png) 27 27 27 27 stretch stretch;</p></blockquote>
<p>Which then results in:</p>
<p id="border-image-2">Lorem ipsum dolor sit amet.</p>
<p>For those of you not so lucky as to be able to see this, here are screenshots of the two examples.<br />
Number One :<br />
<img alt="border-image first example" src="/wp-content/uploads/2010/04/border-image1.gif" style="margin: 0pt 30px;"><br />
Number Two :<br />
<img alt="border-image second example" src="/wp-content/uploads/2010/04/border-image2.gif" style="margin: 0pt 30px;"></p>
]]></content:encoded>
			<wfw:commentRss>http://csssyntax.com/css-3-borders-image-background.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
