<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: In Depth CSS Part 4: New CSS3 Styles</title>
	<atom:link href="http://spyrestudios.com/css-in-depth-new-css3-styles/feed/" rel="self" type="application/rss+xml" />
	<link>http://spyrestudios.com/css-in-depth-new-css3-styles/</link>
	<description>Web-Design and Development Magazine</description>
	<lastBuildDate>Fri, 12 Aug 2011 08:09:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Joanna</title>
		<link>http://spyrestudios.com/css-in-depth-new-css3-styles/#comment-16605</link>
		<dc:creator>Joanna</dc:creator>
		<pubDate>Fri, 30 Apr 2010 10:10:46 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7614#comment-16605</guid>
		<description>Is there any easy way to add shadow effect to a table and be sure that it will be well visible in the most recent browsers? Or should I use images instead - does someone has a short instructions for that?</description>
		<content:encoded><![CDATA[<p>Is there any easy way to add shadow effect to a table and be sure that it will be well visible in the most recent browsers? Or should I use images instead &#8211; does someone has a short instructions for that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derrick Workman</title>
		<link>http://spyrestudios.com/css-in-depth-new-css3-styles/#comment-15306</link>
		<dc:creator>Derrick Workman</dc:creator>
		<pubDate>Wed, 07 Apr 2010 03:55:04 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7614#comment-15306</guid>
		<description>Awesome post. It is just too bad we cant use this stuff 100% yet. On many of my designs I have a curved box with a drop shadow which gets really annoying when you constantly have to use images!

Any-case thanks for the well written article!</description>
		<content:encoded><![CDATA[<p>Awesome post. It is just too bad we cant use this stuff 100% yet. On many of my designs I have a curved box with a drop shadow which gets really annoying when you constantly have to use images!</p>
<p>Any-case thanks for the well written article!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lourens</title>
		<link>http://spyrestudios.com/css-in-depth-new-css3-styles/#comment-15176</link>
		<dc:creator>Lourens</dc:creator>
		<pubDate>Sun, 04 Apr 2010 14:17:03 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7614#comment-15176</guid>
		<description>Thanks for the article, I can&#039;t wait till CSS3 has a good browser support ;)</description>
		<content:encoded><![CDATA[<p>Thanks for the article, I can&#8217;t wait till CSS3 has a good browser support ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amber Weinberg</title>
		<link>http://spyrestudios.com/css-in-depth-new-css3-styles/#comment-14985</link>
		<dc:creator>Amber Weinberg</dc:creator>
		<pubDate>Wed, 31 Mar 2010 14:29:58 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7614#comment-14985</guid>
		<description>@Gerben I stated at the very beginning that you must use a webkit or gecko browser...</description>
		<content:encoded><![CDATA[<p>@Gerben I stated at the very beginning that you must use a webkit or gecko browser&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerben van Dijk</title>
		<link>http://spyrestudios.com/css-in-depth-new-css3-styles/#comment-14971</link>
		<dc:creator>Gerben van Dijk</dc:creator>
		<pubDate>Wed, 31 Mar 2010 07:37:10 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7614#comment-14971</guid>
		<description>Nice article, but I&#039;m missing some information on browser support for all of these styles (you mentioned it at some of them, but not all).</description>
		<content:encoded><![CDATA[<p>Nice article, but I&#8217;m missing some information on browser support for all of these styles (you mentioned it at some of them, but not all).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joost Kiens</title>
		<link>http://spyrestudios.com/css-in-depth-new-css3-styles/#comment-14965</link>
		<dc:creator>Joost Kiens</dc:creator>
		<pubDate>Wed, 31 Mar 2010 04:25:49 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7614#comment-14965</guid>
		<description>Also a lot of these effects and selectors can be faked by using microsoft&#039;s proprietary filters, css expressions, javascript (in between conditional comments), etc. to get similar effects in IE.

For example for opacity:
.transparent {
-ms-filter:&quot;progid:DXImageTransform.Microsoft.Alpha(Opacity=50)&quot;; /* for ie6, should be first! */
filter: alpha(opacity=50);
opacity: .5;
-moz-opacity:0.5;
-webkit-opacity:0.5;
}

ie last child
#subnav li {background-color: green;}
#subnav li:last-child {background-color: red;}
#subnav li {background-color: expression(this.nextSibling==null?&#039;red&#039;:&#039;green&#039;);}

wordwrap
.word-wrap
{
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}

Oh and of course you can easily fake an rgba background with a semi transparent png, will take care of ie7 and up:

div { background: rgb(0, 0, 0) url(&#039;transparent-black-0.5.png&#039;); } // ie7 and up
div { background: rgba(0, 0, 0, 0.5) none; } // real browsers</description>
		<content:encoded><![CDATA[<p>Also a lot of these effects and selectors can be faked by using microsoft&#8217;s proprietary filters, css expressions, javascript (in between conditional comments), etc. to get similar effects in IE.</p>
<p>For example for opacity:<br />
.transparent {<br />
-ms-filter:&#8221;progid:DXImageTransform.Microsoft.Alpha(Opacity=50)&#8221;; /* for ie6, should be first! */<br />
filter: alpha(opacity=50);<br />
opacity: .5;<br />
-moz-opacity:0.5;<br />
-webkit-opacity:0.5;<br />
}</p>
<p>ie last child<br />
#subnav li {background-color: green;}<br />
#subnav li:last-child {background-color: red;}<br />
#subnav li {background-color: expression(this.nextSibling==null?&#8217;red&#8217;:'green&#8217;);}</p>
<p>wordwrap<br />
.word-wrap<br />
{<br />
white-space: pre-wrap; /* css-3 */<br />
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */<br />
white-space: -pre-wrap; /* Opera 4-6 */<br />
white-space: -o-pre-wrap; /* Opera 7 */<br />
word-wrap: break-word; /* Internet Explorer 5.5+ */<br />
}</p>
<p>Oh and of course you can easily fake an rgba background with a semi transparent png, will take care of ie7 and up:</p>
<p>div { background: rgb(0, 0, 0) url(&#8216;transparent-black-0.5.png&#8217;); } // ie7 and up<br />
div { background: rgba(0, 0, 0, 0.5) none; } // real browsers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Divyesh Ardeshana</title>
		<link>http://spyrestudios.com/css-in-depth-new-css3-styles/#comment-14947</link>
		<dc:creator>Divyesh Ardeshana</dc:creator>
		<pubDate>Tue, 30 Mar 2010 18:54:48 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7614#comment-14947</guid>
		<description>it is really good help :)</description>
		<content:encoded><![CDATA[<p>it is really good help :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CSS Brigit &#124; In Depth CSS Part 4: New CSS3 Styles</title>
		<link>http://spyrestudios.com/css-in-depth-new-css3-styles/#comment-14945</link>
		<dc:creator>CSS Brigit &#124; In Depth CSS Part 4: New CSS3 Styles</dc:creator>
		<pubDate>Tue, 30 Mar 2010 18:40:54 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7614#comment-14945</guid>
		<description>&lt;strong&gt;In Depth CSS Part 4: New CSS3 Styles...&lt;/strong&gt;

In the fourth, and last, part of our In Depth CSS series, well talk about several new CSS3 features – from fancy styling to mobile Webkit development....</description>
		<content:encoded><![CDATA[<p><strong>In Depth CSS Part 4: New CSS3 Styles&#8230;</strong></p>
<p>In the fourth, and last, part of our In Depth CSS series, well talk about several new CSS3 features – from fancy styling to mobile Webkit development&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Web Design Maidstone</title>
		<link>http://spyrestudios.com/css-in-depth-new-css3-styles/#comment-14939</link>
		<dc:creator>Web Design Maidstone</dc:creator>
		<pubDate>Tue, 30 Mar 2010 17:48:45 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7614#comment-14939</guid>
		<description>Nice article, looking forward to gradually introducing these neat new css3 touches but wish everyone would be forced to update their browsers so we can all enjoy it now!</description>
		<content:encoded><![CDATA[<p>Nice article, looking forward to gradually introducing these neat new css3 touches but wish everyone would be forced to update their browsers so we can all enjoy it now!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: In Depth CSS Part 4: New CSS3 Styles &#124; Design Newz</title>
		<link>http://spyrestudios.com/css-in-depth-new-css3-styles/#comment-14936</link>
		<dc:creator>In Depth CSS Part 4: New CSS3 Styles &#124; Design Newz</dc:creator>
		<pubDate>Tue, 30 Mar 2010 16:47:00 +0000</pubDate>
		<guid isPermaLink="false">http://spyrestudios.com/?p=7614#comment-14936</guid>
		<description>[...] In Depth CSS Part 4: New CSS3 Styles [...]</description>
		<content:encoded><![CDATA[<p>[...] In Depth CSS Part 4: New CSS3 Styles [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using memcached (Feed is rejected)
Page Caching using memcached
Database Caching using memcached
Object Caching 267/360 objects using memcached

Served from: spyrestudios.com @ 2012-05-21 03:20:13 -->
