<?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>Centre of the Universe &#187; CSS</title>
	<atom:link href="http://www.sergemeunier.com/blog/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sergemeunier.com/blog</link>
	<description>The musings of a mad software developer</description>
	<lastBuildDate>Tue, 01 Jun 2010 20:26:26 +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>The good stuff in CSS3</title>
		<link>http://www.sergemeunier.com/blog/the-good-stuff-in-css3/</link>
		<comments>http://www.sergemeunier.com/blog/the-good-stuff-in-css3/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 07:51:46 +0000</pubDate>
		<dc:creator>Serge Meunier</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.sergemeunier.com/blog/?p=1460</guid>
		<description><![CDATA[CCS3 has been making a lot of waves over the last several months, and is picking up a lot of support on the internet. It truly simplifies a great deal of things that have historically been major headaches for web developers.
The different browsers still have different implementations until the spec is finalised, but for Firefox, [...]


Related posts:<ol><li><a href='http://www.sergemeunier.com/blog/how-browser-incompatibility-can-waste-my-day/' rel='bookmark' title='Permanent Link: How browser incompatibility can waste my day'>How browser incompatibility can waste my day</a> <small>I got struck by a curious problem the other day....</small></li>
<li><a href='http://www.sergemeunier.com/blog/curious-adventure-in-capturing-key-presses-in-adobe-air/' rel='bookmark' title='Permanent Link: A curious adventure in capturing key presses in Adobe Air'>A curious adventure in capturing key presses in Adobe Air</a> <small>Web browsers are notorious in how they handle key presses....</small></li>
<li><a href='http://www.sergemeunier.com/blog/better-javascript-error-handling-with-damnit/' rel='bookmark' title='Permanent Link: Better JavaScript error handling with DamnIT'>Better JavaScript error handling with DamnIT</a> <small>We all know that the Internet is a mess, with...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>CCS3 has been making a lot of waves over the last several months, and is picking up a lot of support on the internet. It truly simplifies a great deal of things that have historically been major headaches for web developers.</p>
<p>The different browsers still have different implementations until the spec is finalised, but for Firefox, and Webkit based browsers, many of the features are already implemented.</p>
<p>My favourite addition, is the HTML canvas, which I have already used extensively, particularly in my <a href="http://www.sergemeunier.com/blog/o3d-tutorials/">O3D tutorials</a>.</p>
<p>Border radius is another great feature, which does away with the need for cumbersome tables and partial images to create rounded images. All you need now is to add the following style</p>
<pre name="code" class="html">
.roundedcorners {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
</pre>
<p>Here is an example:<br />
<span style="background-color: #ddddff; padding: 5px; border-radius: 5px;	-moz-border-radius: 5px; -webkit-border-radius: 5px;">Testing borders</span></p>
<p>I also like the drop shadows in text, which allow great effects.</p>
<pre name="code" class="html">
.box-shadow {
	box-shadow: 4px 4px 2px #dddddd;
	-moz-box-shadow: 4px 4px 2px #dddddd;
	-webkit-box-shadow: 4px 4px 2px #dddddd;

	text-shadow: 1px 2px 3px #aaaaaa;

}
</pre>
<p>Here is an example:<br/><br/><br />
<span style="background-color: #ffffff; border: 1px solid #dddddd; padding: 20px; box-shadow: 4px 4px 2px #dddddd;-moz-box-shadow: 4px 4px 2px #dddddd;-webkit-box-shadow: 4px 4px 2px #dddddd; text-shadow: 1px 2px 3px #333333;">Testing shadows</span><br />
<br/><br/><br />
There are many more great additions too, such as better transparency, multiple background images, and multi-column layouts, which will all make web developers lives much, much easier. </p>
<p>Now to find a way to get people to start using these browsers instead of older non-compliant browsers, but that is a different issue entirely&#8230;.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.sergemeunier.com%2Fblog%2Fthe-good-stuff-in-css3%2F&amp;linkname=The%20good%20stuff%20in%20CSS3"><img src="http://www.sergemeunier.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>Related posts:<ol><li><a href='http://www.sergemeunier.com/blog/how-browser-incompatibility-can-waste-my-day/' rel='bookmark' title='Permanent Link: How browser incompatibility can waste my day'>How browser incompatibility can waste my day</a> <small>I got struck by a curious problem the other day....</small></li>
<li><a href='http://www.sergemeunier.com/blog/curious-adventure-in-capturing-key-presses-in-adobe-air/' rel='bookmark' title='Permanent Link: A curious adventure in capturing key presses in Adobe Air'>A curious adventure in capturing key presses in Adobe Air</a> <small>Web browsers are notorious in how they handle key presses....</small></li>
<li><a href='http://www.sergemeunier.com/blog/better-javascript-error-handling-with-damnit/' rel='bookmark' title='Permanent Link: Better JavaScript error handling with DamnIT'>Better JavaScript error handling with DamnIT</a> <small>We all know that the Internet is a mess, with...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.sergemeunier.com/blog/the-good-stuff-in-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Book review: CSS Cookbook by Christopher Schmitt</title>
		<link>http://www.sergemeunier.com/blog/book-review-css-cookbook-by-christopher-schmitt/</link>
		<comments>http://www.sergemeunier.com/blog/book-review-css-cookbook-by-christopher-schmitt/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 18:41:11 +0000</pubDate>
		<dc:creator>Serge Meunier</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.sergemeunier.com/blog/?p=489</guid>
		<description><![CDATA[
This book makes it sense of the minefield that is working with CSS.
As a reference to quickly find a solution on how to do something specific, this book does a pretty good job. It is laid out well, and the &#8220;recipes&#8221;, as a solution is called, are categorised nicely into convenient chapters for easy searching.
The [...]


Related posts:<ol><li><a href='http://www.sergemeunier.com/blog/book-review-php5-and-mysql-bible-by-tim-converse-et-al/' rel='bookmark' title='Permanent Link: Book review: PHP5 and MySQL Bible by Tim Converse et al'>Book review: PHP5 and MySQL Bible by Tim Converse et al</a> <small>This is one big and comprehensive book, but do not...</small></li>
<li><a href='http://www.sergemeunier.com/blog/book-review-adobe-air-for-javascript-developers-pocket-guide/' rel='bookmark' title='Permanent Link: Book review: Adobe AIR for Javascript Developers Pocket guide by Mike Chambers et al'>Book review: Adobe AIR for Javascript Developers Pocket guide by Mike Chambers et al</a> <small>Most of the online resources for Adobe Air seem to...</small></li>
<li><a href='http://www.sergemeunier.com/blog/book-review-javascript-the-good-parts/' rel='bookmark' title='Permanent Link: Book review: Javascript: The Good Parts by Douglas Crockford'>Book review: Javascript: The Good Parts by Douglas Crockford</a> <small> Javascript is a minefield of a language. It has...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=centoftheuniv-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;md=10FE9736YVPPT7A0FBG2&#038;asins=059615593X" style="width:120px;height:240px;position:relative;float:right;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe><br />
This book makes it sense of the minefield that is working with CSS.</p>
<p>As a reference to quickly find a solution on how to do something specific, this book does a pretty good job. It is laid out well, and the &#8220;recipes&#8221;, as a solution is called, are categorised nicely into convenient chapters for easy searching.</p>
<p>The real benefit of this book is that it highlights the difference between all the major browsers, so that cross-browser support moves out of the realm of fantasy, and into the realm of the possible.</p>
<p>I think this book is a must-have for every web developer.<br />
<br/><br />
<br/></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.sergemeunier.com%2Fblog%2Fbook-review-css-cookbook-by-christopher-schmitt%2F&amp;linkname=Book%20review%3A%20CSS%20Cookbook%20by%20Christopher%20Schmitt"><img src="http://www.sergemeunier.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>Related posts:<ol><li><a href='http://www.sergemeunier.com/blog/book-review-php5-and-mysql-bible-by-tim-converse-et-al/' rel='bookmark' title='Permanent Link: Book review: PHP5 and MySQL Bible by Tim Converse et al'>Book review: PHP5 and MySQL Bible by Tim Converse et al</a> <small>This is one big and comprehensive book, but do not...</small></li>
<li><a href='http://www.sergemeunier.com/blog/book-review-adobe-air-for-javascript-developers-pocket-guide/' rel='bookmark' title='Permanent Link: Book review: Adobe AIR for Javascript Developers Pocket guide by Mike Chambers et al'>Book review: Adobe AIR for Javascript Developers Pocket guide by Mike Chambers et al</a> <small>Most of the online resources for Adobe Air seem to...</small></li>
<li><a href='http://www.sergemeunier.com/blog/book-review-javascript-the-good-parts/' rel='bookmark' title='Permanent Link: Book review: Javascript: The Good Parts by Douglas Crockford'>Book review: Javascript: The Good Parts by Douglas Crockford</a> <small> Javascript is a minefield of a language. It has...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.sergemeunier.com/blog/book-review-css-cookbook-by-christopher-schmitt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
