<?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>The Book of CSS3</title>
	<atom:link href="http://thebookofcss3.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://thebookofcss3.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Fri, 17 May 2013 23:02:40 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Updated Gradient Examples</title>
		<link>http://thebookofcss3.com/updated-gradient-examples/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=updated-gradient-examples</link>
		<comments>http://thebookofcss3.com/updated-gradient-examples/#comments</comments>
		<pubDate>Fri, 23 Nov 2012 00:16:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chapter 11]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://thebookofcss3.com/?p=358</guid>
		<description><![CDATA[In the past few months IE10, Firefox 16 and Opera 12.1 have all been released, and all have removed the vendor prefix from the four gradient properties: linear-gradient, repeating-linear-gradient, radial-gradient, and repeating-radial-gradient. As a result, all of the examples in &#8230; <a href="http://thebookofcss3.com/updated-gradient-examples/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>In the past few months IE10, Firefox 16 and Opera 12.1 have all been released, and all have removed the vendor prefix from the four gradient properties: <code>linear-gradient</code>, <code>repeating-linear-gradient</code>, <code>radial-gradient</code>, and <code>repeating-radial-gradient</code>. As a result, all of the examples in <a href="/resources/chapter-11/" title="Chapter 11">Chapter 11</a> now use the new syntax. Only the WebKit-based browsers are yet to implement the final syntax.</p>
]]></content:encoded>
			<wfw:commentRss>http://thebookofcss3.com/updated-gradient-examples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New border-image properties</title>
		<link>http://thebookofcss3.com/new-border-image-properties/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-border-image-properties</link>
		<comments>http://thebookofcss3.com/new-border-image-properties/#comments</comments>
		<pubDate>Fri, 20 Jul 2012 00:19:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chapter 09]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://thebookofcss3.com/?p=337</guid>
		<description><![CDATA[Firefox 15 should see changes to the border-image syntax to keep it in line with the latest version of the spec. There are four key changes: first, all of the individual border-image-* properties are supported. They are: border-image-source, border-image-slice, border-image-width, &#8230; <a href="http://thebookofcss3.com/new-border-image-properties/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Firefox 15 should see changes to the <code>border-image</code> syntax to keep it in line with the latest version of <a href="http://www.w3.org/TR/css3-background/#border-images">the spec</a>. There are four key changes: first, all of the individual <code><em>border-image-*</em></code> properties are supported. They are: <code>border-image-source</code>, <code>border-image-slice</code>, <code>border-image-width</code>, <code>border-image-outset</code>, and <code>border-image-repeat</code>. The <code>border-image</code> property is now a shorthand for all of those.</p>
<p>The second key change is that the centre of the image is not shown by default; in order to fill in the image, you have to use the <code><em>fill</em></code> keyword with <code>border-image-slice</code>, e.g.:</p>
<pre>E { border-image-slice: 10 fill; }</pre>
<p>Third, specificity of the <code>border</code> property is now important; if the <code>border</code> property is set to <code><em>none</em></code> and has higher specificity, <code>border-image</code> won’t apply.</p>
<p>Fourth and finally, all of the properties have been unprefixed.</p>
<p>The examples in <a href="/resources/chapter-9/">Chapter 9</a> have been updated to reflect these changes. In <a href="/wp-content/examples/css3_09-07.html">Example 09–07</a> I’ve added an extra box to show the individual properties, and also the fill keyword noted above.</p>
]]></content:encoded>
			<wfw:commentRss>http://thebookofcss3.com/new-border-image-properties/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated OpenType features syntax</title>
		<link>http://thebookofcss3.com/updated-font-settings-syntax/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=updated-font-settings-syntax</link>
		<comments>http://thebookofcss3.com/updated-font-settings-syntax/#comments</comments>
		<pubDate>Sun, 08 Jul 2012 11:46:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chapter 05]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://thebookofcss3.com/?p=335</guid>
		<description><![CDATA[The font-feature-settings property introduced in Chapter 5 has changed slightly since publication of the book, and is now implemented in more browsers. The tweaked syntax now looks like this: E { font-feature-settings: "feature" flag; } The feature value is the &#8230; <a href="http://thebookofcss3.com/updated-font-settings-syntax/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>The <code>font-feature-settings</code> property introduced in Chapter 5 has changed slightly since publication of the book, and is now implemented in more browsers. The tweaked syntax now looks like this:</p>
<pre>E { font-feature-settings: "<i>feature</i>" <i>flag</i>; }</pre>
<p>The <em>feature</em> value is the four-letter code for each OpenType feature; <em>dlig</em>, <em>kern</em>, <em>liga</em>, etc. The <em>flag</em> is a number, 0 or 1, to show whether the feature is enabled or disabled. So to disable kerning, the new rule is this:</p>
<pre>E { font-feature-settings: "kern" 0; }</pre>
<p>As the flag is Boolean, to enable a feature you can supply no value:</p>
<pre>E { font-feature-settings: "liga"; }</pre>
<p>As before, you can give multiple values in a comma-separated list:</p>
<pre>E { font-feature-settings: "dlig", "kern" 0, "liga"; }</pre>
<p>The new syntax will be introduced in Firefox 15 (still with the <em>–moz–</em> prefix), is available in Chrome (Linux and Windows only, with the <em>–webkit–</em> prefix) and unprefixed in IE10.</p>
<p>The support tables in <a href="/wp-content/examples/css3_05-08_09.html">Chapter 5</a> and <a href="/wp-content/examples/css3_05-08_09.html">Example 05-08_09</a> have been updated with the new syntax.</p>
]]></content:encoded>
			<wfw:commentRss>http://thebookofcss3.com/updated-font-settings-syntax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gradients: New Radial Syntax, IE10 Unprefixes</title>
		<link>http://thebookofcss3.com/gradients-new-radial-syntax-ie10-unprefixes/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=gradients-new-radial-syntax-ie10-unprefixes</link>
		<comments>http://thebookofcss3.com/gradients-new-radial-syntax-ie10-unprefixes/#comments</comments>
		<pubDate>Tue, 26 Jun 2012 12:00:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chapter 11]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://thebookofcss3.com/?p=332</guid>
		<description><![CDATA[The latest preview release of IE10 has the most up to date linear-gradient and radial-gradient syntaxes, and has removed prefixes from them both. The syntax for radial-gradient has changed dramatically since publication of the book. The new syntax looks like &#8230; <a href="http://thebookofcss3.com/gradients-new-radial-syntax-ie10-unprefixes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>The latest preview release of IE10 has the most up to date <code>linear-gradient</code> and <code>radial-gradient</code> syntaxes, and has removed prefixes from them both.</p>
<p>The syntax for radial-gradient has changed dramatically since publication of the book. The new syntax looks like this:</p>
<pre>div { background: radial-gradient(10em circle at right,#000,#FFF); }</pre>
<p>The first value sets the size of the gradient; it can be a unit value, or a keyword such as closest-side. The next value is the shape; a radial gradient can be either a circle or an ellipse. Next is an optional position for the centre of the gradient; in this example, the gradient will start on the centre of the right side of the box. The color-stop values remain as before.</p>
<p>There’s <a href="http://www.broken-links.com/2012/06/26/the-new-radial-gradient-syntax/">a fuller explanation of the new radial-gradient syntax</a> at Broken-Links.com.</p>
<p>All of the support tables and examples in <a href="/resources/chapter-11/">Chapter 11</a> have been updated to reflect these new developments.</p>
]]></content:encoded>
			<wfw:commentRss>http://thebookofcss3.com/gradients-new-radial-syntax-ie10-unprefixes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The skew() Function is Dead</title>
		<link>http://thebookofcss3.com/the-skew-function-dead/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-skew-function-dead</link>
		<comments>http://thebookofcss3.com/the-skew-function-dead/#comments</comments>
		<pubDate>Mon, 25 Jun 2012 18:20:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chapter 12]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://thebookofcss3.com/?p=324</guid>
		<description><![CDATA[The CSS 2D Transforms and 3D Transforms modules have been merged into a single module: CSS Transforms. The only practical change this has resulted in so far is the removal of the skew() function — skewX() and skewY() remain unchanged. &#8230; <a href="http://thebookofcss3.com/the-skew-function-dead/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>The CSS 2D Transforms and 3D Transforms modules have been merged into a single module: <a href="http://www.w3.org/TR/css3-transforms/">CSS Transforms</a>. The only practical change this has resulted in so far is the removal of the <code>skew()</code> function — <code>skewX()</code> and <code>skewY()</code> remain unchanged.</p>
<p>The <code>-moz-skew()</code> function has been removed from Firefox 14, and <a href="/wp-content/examples/css3_12-05.html">Example 12–05</a> has been updated to show this.</p>
]]></content:encoded>
			<wfw:commentRss>http://thebookofcss3.com/the-skew-function-dead/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated CSS3 support coming in Opera 12</title>
		<link>http://thebookofcss3.com/updated-css3-support-coming-in-opera-12/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=updated-css3-support-coming-in-opera-12</link>
		<comments>http://thebookofcss3.com/updated-css3-support-coming-in-opera-12/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 12:33:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chapter 11]]></category>
		<category><![CDATA[Chapter 13]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[animations]]></category>
		<category><![CDATA[gradient]]></category>
		<category><![CDATA[linear-gradient]]></category>
		<category><![CDATA[opera]]></category>

		<guid isPermaLink="false">http://thebookofcss3.com/?p=318</guid>
		<description><![CDATA[Opera have recently released a new preview of version 12 of their browser, which features support for CSS Animations, and the updated linear-gradient syntax. The tables and examples in Chapter 13 and Chapter 11 (respectively) have been updated.]]></description>
				<content:encoded><![CDATA[<p>Opera have recently released a new preview of version 12 of their browser, which features support for CSS Animations, and the updated linear-gradient syntax. The tables and examples in <a href="/resources/chapter-13/" title="Chapter 13">Chapter 13</a> and <a href="/resources/chapter-11/" title="Chapter 11">Chapter 11</a> (respectively) have been updated. </p>
]]></content:encoded>
			<wfw:commentRss>http://thebookofcss3.com/updated-css3-support-coming-in-opera-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updates to Background Properties</title>
		<link>http://thebookofcss3.com/updates-to-background-properties/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=updates-to-background-properties</link>
		<comments>http://thebookofcss3.com/updates-to-background-properties/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 13:44:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chapter 08]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://thebookofcss3.com/?p=305</guid>
		<description><![CDATA[Some updates to existing background properties have landed in browsers since the publication of the book. The background-position property now accepts up to four values to give more flexibility in positioning. Previously all positioning was measured from the top left &#8230; <a href="http://thebookofcss3.com/updates-to-background-properties/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Some updates to existing background properties have landed in browsers since the publication of the book.</p>
<p>The <code>background-position</code> property now accepts up to four values to give more flexibility in positioning. Previously all positioning was measured from the top left corner, but with the updated syntax you can change that by using a keyword before each value; for example, to position the background image 20px from the right and 10px from the bottom, you would use this:</p>
<pre>e { background-position: right 20px bottom 10px; }</pre>
<p>You can also use three values, which must be in the format keyword-keyword-length or keyword-length-keyword:</p>
<pre>e { background-position: left top 20px; }
f { background-position: left 20px top; }</pre>
<p>This is equivalent to:</p>
<pre>e { background-position: left 0 top 20px; }</pre>
<p>You can see a few examples of this in <a href="/wp-content/examples/css3_08-12.html">Figure 8–12</a> — as I write this, only Opera, IE9 and Firefox Nightly will display this correctly.</p>
<p>The other change is to the <code>background-repeat</code> property. This now accepts two values, which are equivalent to <code>background-repeat-x</code> and <code>background-repeat-y</code>:</p>
<pre>e { background-repeat: repeat no-repeat; }</pre>
<p>This is demonstrated in <a href="/wp-content/examples/css3_08-13.html">Figure 8–13</a>, but although Firefox 13 should have support for this syntax, these examples use the <code>background-repeat</code> values <em>space</em> and <em>round</em> so as of this writing you’ll need Opera or IE9 to view them.</p>
<p>The browser support tables in <a href="/resources/chapter-8/" title="Chapter 8">Chapter 8</a> have been updated to show these changes.</p>
]]></content:encoded>
			<wfw:commentRss>http://thebookofcss3.com/updates-to-background-properties/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Better Text Support in Browsers</title>
		<link>http://thebookofcss3.com/better-text-support-in-browsers/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=better-text-support-in-browsers</link>
		<comments>http://thebookofcss3.com/better-text-support-in-browsers/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 00:55:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chapter 06]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://thebookofcss3.com/?p=300</guid>
		<description><![CDATA[Some updates to the Text properties in Chapter 6: Firefox 12 is scheduled to support the text-align-last property, although it will be prefixed as -moz-text-align-last; and WebKit browsers have implemented text-rendering, without prefix, in Safari 5+ and Chrome. The browser &#8230; <a href="http://thebookofcss3.com/better-text-support-in-browsers/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Some updates to the Text properties in <a href="/resources/chapter-6/" title="Chapter 6">Chapter 6</a>: Firefox 12 is scheduled to support the <code>text-align-last</code> property, although it will be prefixed as <code>-moz-text-align-last</code>; and WebKit browsers have implemented <code>text-rendering</code>, without prefix, in Safari 5+ and Chrome. The browser support tables have been updated accordingly.</p>
]]></content:encoded>
			<wfw:commentRss>http://thebookofcss3.com/better-text-support-in-browsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3D Transforms coming in Firefox 10</title>
		<link>http://thebookofcss3.com/3d-transforms-coming-in-firefox-10/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=3d-transforms-coming-in-firefox-10</link>
		<comments>http://thebookofcss3.com/3d-transforms-coming-in-firefox-10/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 22:32:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chapter 14]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://thebookofcss3.com/?p=294</guid>
		<description><![CDATA[Support for 3D Transforms has landed in the beta release of Firefox 10, so seems very likely to ship with that browser. The table in Chapter 14 has been updated to reflect this.]]></description>
				<content:encoded><![CDATA[<p>Support for 3D Transforms has landed in the beta release of Firefox 10, so seems very likely to ship with that browser. The table in Chapter 14 has been updated to reflect this.</p>
]]></content:encoded>
			<wfw:commentRss>http://thebookofcss3.com/3d-transforms-coming-in-firefox-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated Gradients Syntax</title>
		<link>http://thebookofcss3.com/updated-gradients-syntax/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=updated-gradients-syntax</link>
		<comments>http://thebookofcss3.com/updated-gradients-syntax/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 19:02:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chapter 11]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://thebookofcss3.com/?p=286</guid>
		<description><![CDATA[Some changes have been made to the CSS Gradients syntax since the publication of the book. First, a color-stop now accepts length values or percentages, so this is valid: div { background-image: linear-gradient(black 10px, white); } Second, percentages are no &#8230; <a href="http://thebookofcss3.com/updated-gradients-syntax/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Some changes have been made to the CSS Gradients syntax since the publication of the book.</p>
<p>First, a <em>color-stop</em> now accepts length values or percentages, so this is valid:</p>
<pre>div { background-image: linear-gradient(black 10px, white); }</pre>
<p>Second, percentages are no longer permitted for the <em>point</em> value, which now allows only keywords and angles. So this is no longer valid:</p>
<pre>div { background-image: linear-gradient(100% 50%, black, white); }</pre>
<p>And you should use this instead:</p>
<pre>div { background-image: linear-gradient(right, black, white); }</pre>
<p>However, the very latest version of the module changes this further, so instead of the keyword being the origin point, it’s now used with the <em>to</em> keyword to be the end point; for example, a left to right gradient used to be this:</p>
<pre>div { background-image: linear-gradient(left, black, white); }</pre>
<p>But is now this:</p>
<pre>div { background-image: linear-gradient(to right, black, white); }</pre>
<p>And a diagonal bottom-left to top-right used to be this:</p>
<pre>div { background-image: linear-gradient(left bottom, black, white); }</pre>
<p>But is now this:</p>
<pre>div { background-image: linear-gradient(to right top, black, white); }</pre>
<p>Firefox 10 should be the first browser to implement these on the <code>linear-gradient</code> and <code>repeating-linear-gradient</code> values, with the –moz– prefix. I’ve updated the support table and examples in <a href="http://thebookofcss3.com/resources/chapter-11/" title="Chapter 11">Chapter 11</a> and you can test these now if you have a copy of Firefox Beta, Aurora, or Nightly.</p>
]]></content:encoded>
			<wfw:commentRss>http://thebookofcss3.com/updated-gradients-syntax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
