<?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>Webmonkey &#187; CSS 3</title>
    <atom:link href="http://www.webmonkey.com/tag/css-3/feed/" rel="self" type="application/rss+xml" />
    <link>http://www.webmonkey.com</link>
    <description>The Web Developer&#039;s Resource</description>
    <lastBuildDate>Fri, 05 Apr 2013 20:20:46 +0000</lastBuildDate>
    <language>en-US</language>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>
    <generator>http://wordpress.org/?v=3.4.2</generator>
    
    <item>
        <title>Use Tomorrow&#8217;s Web Standards Today With CSS &#8216;@Supports&#8217;</title>
        <link>http://www.webmonkey.com/2012/11/use-tomorrows-web-standards-today-with-css-supports/</link>
        <comments>http://www.webmonkey.com/2012/11/use-tomorrows-web-standards-today-with-css-supports/#comments</comments>
        <pubDate>Mon, 26 Nov 2012 16:48:57 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/?p=60044</guid>
        		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[CSS 3]]></category>
            <enclosure url="http://www.webmonkey.com/wp-content/uploads/2012/11/sheep_w.jpg" type="image/jpeg" length="48000" />
                    <description><![CDATA[<div class="rss_thumbnail"><img src="http://www.webmonkey.com/wp-content/uploads/2012/11/sheep_w.jpg" alt="Use Tomorrow&#8217;s Web Standards Today With CSS &#8216;@Supports&#8217;" /></div>The future is coming fast on the web and if you want your sites to keep up you have to stay a little ahead of the curve. Sometimes that means using new HTML and CSS features before every web browser fully supports them. So how do you know which browser supports which features? Thanks to CSS 3's new @supports rule you can just ask the browser.]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->
<div id="attachment_47784" class="wp-caption alignleft" style="width: 167px"><a href="http://www.webmonkey.com/wp-content/uploads/2010/06/CSS_sheep.jpg"><img src="http://www.webmonkey.com/wp-content/uploads/2010/06/CSS_sheep.jpg" alt="" title="CSS_sheep" width="157" height="192" class="size-full wp-image-47784" /></a></p>
<p class="wp-caption-text">Woolly, the CSS sheep.</p>
</div>
<p>Using CSS 3 on the web today means that, inevitably, some browsers won&#8217;t be able to display some elements of your design. Hopefully you&#8217;re using progressive enhancement so that your pages still function in less-capable browsers, which might not understand all those fancy <code>transform</code> rules.</p>
<p>For more complex projects progressive enhancement might even mean turning to a feature detection library like <a href="http://modernizr.com/">Modernizr</a>, which will detect and apply CSS classes based on the current browser&#8217;s capabilities. </p>
<p>Modernizr is great when you need it, but did you know that soon the browser itself will be able to give you the same information?</p>
<p>Both Opera 12.10 and Firefox 19 (currently in the Aurora channel) support native CSS feature detection through the CSS <code>@supports</code> rule. CSS <code>@supports</code> offers the same capabilities of Modernizr &#8212; selectively applying CSS based on what the current browser supports &#8212; but it does it through much faster native code. Even better, because browsers that don&#8217;t support <code>@supports</code> will just ignore it, you can start using it today.</p>
<p>Opera Software&#8217;s Chris Mills recently posted <a href="http://dev.opera.com/articles/view/native-css-feature-detection-via-the-supports-rule/">a nice intro to using <code>@supports</code></a> which you should read for more details, but here&#8217;s an example to illustrate the basic idea:</p>
<pre class="brush: js">
@supports ( box-shadow: 2px 2px 2px black ) {
    .my-element {
        box-shadow: box-shadow: 2px 2px 2px black;
    }
}
</pre>
<p>The code above uses <code>@supports</code> to check for support for the <code>box-shadow</code> property and then applies a box shadow to browsers that will display it. Of course since many of the features you&#8217;d likely be detecting are still prefixed, a more complete example (pulled from <a href="http://www.w3.org/TR/css3-conditional/#at-supports">the W3C&#8217;s @supports page</a>) would look like this:</p>
<pre class="brush: js">
@supports ( box-shadow: 2px 2px 2px black ) or
          ( -moz-box-shadow: 2px 2px 2px black ) or
          ( -webkit-box-shadow: 2px 2px 2px black ) or
          ( -o-box-shadow: 2px 2px 2px black ) {
    .outline {
        color: white;
        -moz-box-shadow: 2px 2px 2px black;
        -webkit-box-shadow: 2px 2px 2px black;
        -o-box-shadow: 2px 2px 2px black;
        box-shadow: 2px 2px 2px black; /* unprefixed last */
    }
}
</pre>
<p>Now we&#8217;re checking for not just <code>box-shadow</code> but any vendor-prefixed versions of it as well. We&#8217;re also not just applying <code>box-shadow</code>, but also changing the outline color to white, which (assuming a white background) would not be good to do in browsers that don&#8217;t support <code>box-shadow</code> since it would make the outline invisible to the user.</p>
<p>As you can see <code>@supports</code> is pretty handy for progressive enhancement and it avoids the overhead of loading a JavaScript library like Modernizr. CSS <code>@supports</code> also works with operators like <code>not</code> and <code>or</code> so that you could write a rule that says the opposite of what we did above. In other words, detect that the current browser <em>doesn&#8217;t</em> support <code>box-shadow</code> and do something else. </p>
<p>CSS <code>@supports</code> gets even more powerful when you start chaining <code>@support</code> rules together, which is what Mills does in his post on the Opera Dev center, detecting for animations and transforms to serve one thing to browsers that support 3D transforms, one to those that only understand 2D transforms and a third to those that don&#8217;t support transforms at all.</p>
<p>So should you ditch Modernizr and go with <code>@supports</code>? Probably not just yet, but soon. First off, if you&#8217;re using Modernizr for more than just CSS detection then obviously stick with it. But, as Opera&#8217;s Bruce Lawson <a href="http://my.opera.com/ODIN/blog/why-use-supports-instead-of-modernizr">notes in a follow-up to Mills&#8217; post</a>, &#8220;the reason to use <code>@supports</code> over Modernizr is performance; functionality that&#8217;s built into the browser will always be faster than adding it in script.&#8221; Getting rid of Modernizr would also mean eliminating an external dependency, which saves an HTTP request as well. </p>
<p>In fact Modernizr itself <a href="http://www.broken-links.com/2012/08/06/firefox-supports-supports-gets-my-support/#comment-72122">plans to defer to <code>@supports</code> in future releases</a>. If you&#8217;d like to have the best of both worlds today, what you need to do is first detect for @supports and then if it&#8217;s not available load Modernizr. See <a href="http://my.opera.com/ODIN/blog/why-use-supports-instead-of-modernizr">Lawson&#8217;s post</a> for a code snippet that does just that.</p>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2012/11/use-tomorrows-web-standards-today-with-css-supports/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>Google Chrome Speeds Up Fancy CSS Filter Effects</title>
        <link>http://www.webmonkey.com/2012/06/google-chrome-speeds-up-fancy-css-filter-effects/</link>
        <comments>http://www.webmonkey.com/2012/06/google-chrome-speeds-up-fancy-css-filter-effects/#comments</comments>
        <pubDate>Wed, 06 Jun 2012 15:47:56 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/?p=57170</guid>
        		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[CSS 3]]></category>
            <enclosure url="http://www.webmonkey.com/wp-content/uploads/2012/06/fuzzybrownmonkey-200x100.jpg" type="image/jpeg" length="48000" />
                    <description><![CDATA[<div class="rss_thumbnail"><img src="http://www.webmonkey.com/wp-content/uploads/2012/06/fuzzybrownmonkey.jpg" alt="Google Chrome Speeds Up Fancy CSS Filter Effects" /></div>CSS Filters give web developers access to powerful photo filters, but there's a high performance price to be paid for your web-based Instagram efforts. Fortunately there's some hope on the horizon: Google's Chrome browser will soon feature faster, hardware-accelerated CSS Filters.]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled --><div id="attachment_57186" class="wp-caption aligncenter" style="width: 590px"><a href="http://www.webmonkey.com/wp-content/uploads/2012/06/fuzzybrownmonkey.jpg"><img src="http://www.webmonkey.com/wp-content/uploads/2012/06/fuzzybrownmonkey.jpg" alt="" title="fuzzybrownmonkey" width="580" height="262" class="size-full wp-image-57186" /></a><p class="wp-caption-text">Meet Fuzzy Brown Monkey, WT Monkey&#039;s CSS Filter-laden cousin. <em>Image: Screenshot/Webmonkey</em></p></div></p>
<p>CSS filters offer web developers some very powerful tools, powerful enough that it wouldn&#8217;t be too hard to create a web app capable of producing the kind of effect-laden photos popularized by Instagram. There&#8217;s just one problem: CSS Filters can be hard on the CPU.</p>
<p>Few things on the web get your PC&#8217;s fan spinning quite like CSS Filters &#8212; just give Google&#8217;s <a href="http://cssfilters.appspot.com/">abstract painting demo page</a> a try to see for yourself. Filters alone can send your fan spinning, but combine them with some CSS transitions or animations and you&#8217;ve got a recipe for battery draining excess.</p>
<p>That, combined with the fact that so far they only work in WebKit browsers, means right now you should use CSS Filters with caution.</p>
<p>Fortunately the roaring sound of your fan may soon be a thing of the past, at least for Google Chrome users. The Chromium blog <a href="http://blog.chromium.org/2012/06/accelerated-css-filters-landed-in.html">reports</a> that CSS Filters with GPU acceleration have landed in Chromium. It will be some time before the acceleration makes its way into the stable version of Google Chrome, but it is coming and that&#8217;s good news for the future of CSS Filters. Stephen White, a Software Engineer at the Chromium project, writes, &#8220;GPU acceleration of these filters brings their performance to the point where they can be used for animating elements in conjunction with CSS animations powered by -webkit-transition or even HTML5 video tags.&#8221;</p>
<p>It might be a while yet before Adobe launches a web-based version of its Premiere video editor, but expect other browsers to follow Chrome&#8217;s lead in supporting and speeding up CSS Filters. </p>
<p>It&#8217;s worth noting that, while the Instagram use case tends to get all the press, CSS Filters can do a lot more than just sepia toning images. In fact potential uses go far beyond just images or video. For example, CSS Filters could be used to blur backgrounds (or make them black and white) thus highlighting foreground content in online diagrams, charts or educational apps. CSS Filters could replace image sprites in navigation elements (less to download means faster page load times) and could also be used in conjunction with some animation to let users know that something on a page has changed.</p>
<p>For more info on CSS Filters, check out <a href="http://www.webmonkey.com/2011/10/adobe-proposes-new-standard-for-3d-effects-on-the-web/">our earlier coverage</a> and have a look at the HTML5Rocks site, which offers a nice <a href="http://www.html5rocks.com/en/tutorials/filters/understanding-css/">overview of CSS Filters along with some example code</a>.</p>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2012/06/google-chrome-speeds-up-fancy-css-filter-effects/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>Responsive Design Tricks: Fluid Typography With CSS 3</title>
        <link>http://www.webmonkey.com/2012/02/responsive-design-tricks-fluid-typography-with-css-3/</link>
        <comments>http://www.webmonkey.com/2012/02/responsive-design-tricks-fluid-typography-with-css-3/#comments</comments>
        <pubDate>Wed, 08 Feb 2012 19:07:04 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/?p=54239</guid>
        		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Visual Design]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[CSS 3]]></category>
		<category><![CDATA[typography]]></category>
            <enclosure url="http://www.webmonkey.com/wp-content/uploads/2012/02/tablets-200x100.jpg" type="image/jpeg" length="48000" />
                    <description><![CDATA[<div class="rss_thumbnail"><img src="http://www.webmonkey.com/wp-content/uploads/2012/02/tablets.jpg" alt="Responsive Design Tricks: Fluid Typography With CSS 3" /></div>Building a website that looks good on every screen is a tricky prospect. The key is to keep everything fluid -- type like water, Danielsan.]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->
<p><div id="attachment_54241" class="wp-caption alignleft" style="width: 310px"><img src="http://www.webmonkey.com/wp-content/uploads/2012/02/tablets.jpg" alt="" title="tablets" width="300" height="224" class="size-full wp-image-54241" /><p class="wp-caption-text">Photo: Ariel Zambelich/Wired.com</p></div>Building <a href="http://www.webmonkey.com/2012/01/building-a-responsive-future-friendly-web-for-everyone/">responsive websites</a> means that your design has to adapt to different screen sizes. That there is no such thing as &#8220;pixel perfect&#8221; has long been a maxim of good web design, but nowhere is this more true than when you start working with percentage widths, em-based type and other flexible techniques of responsive design. While fluid grids, adaptive images and other tools help, sometimes even basic things like the flow of type can look wrong without a little extra help. </p>
<p>One common problem when designing for multiple devices is handling the changes that happen when the user rotates the screen. It&#8217;s frustrating to see your elegant portrait-oriented designs fall apart as the device moves to landscape mode (or vice versa). Frequently the problem is that images, videos and other embedded content in your page is sized in relation to the pixel width of the viewport, but the type is not. That means that the type fails to adapt to layout changes, leaving ugly gaps, whitespace or hard-to-read, overly long lines.</p>
<p>There are a number of ways to solve this problem, but one of the simplest and easiest is to use fluid typography in addition to your fluid grid. BBC developer Mark Hurrell wrote up an <a href="http://blog.responsivenews.co.uk/post/13925578846/fluid-grids-orientation-resolution-independence">excellent tutorial</a> some time ago that shows how, by specifying font sizes in rems, you can &#8220;adjust every font-size on the page by using media-queries to change the font-size set on the BODY or HTML element according to viewport width.&#8221;</p>
<p>To find the right size type for various screen widths, Hurrell calculates a resolution-independent font scale based on target widths. That is then applied using a series of media queries and the new <a href="http://www.w3.org/TR/css3-values/">CSS 3 unit <code>rem</code></a>. The rem unit means ems <a href="http://snook.ca/archives/html_and_css/font-size-with-rem">relative to the root</a> (the HTML) element. That means your type gets proportionally larger overall, rather than in relation to its parent element as would happen with a simple em. As Hurrell notes, support is pretty much universal on tablets and phones (browsers that don&#8217;t support it will fall back to px sizing, so all is not lost).</p>
<p>In the end what you get using rems and media queries is fluid typography that scales just like a fluid grid. That means that when the device rotates the type resizes to fit the new screen dimensions. For more details on how to make it work on your site be sure to check out the <a href="http://blog.responsivenews.co.uk/post/13925578846/fluid-grids-orientation-resolution-independence">Responsive News blog post</a>, which also has a few links to websites already using this trick. </p>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2012/02/responsive-design-tricks-fluid-typography-with-css-3/feed/</wfw:commentRss>
        <slash:comments>3</slash:comments>

        
    </item>
    
    <item>
        <title>&#8216;HTML5 Please&#8217; Helps You Decide Which Parts of HTML5 and CSS 3 to Use</title>
        <link>http://www.webmonkey.com/2012/01/html5-please-helps-you-decided-which-parts-of-html5-and-css-3-to-use/</link>
        <comments>http://www.webmonkey.com/2012/01/html5-please-helps-you-decided-which-parts-of-html5-and-css-3-to-use/#comments</comments>
        <pubDate>Wed, 25 Jan 2012 20:22:05 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/?p=53996</guid>
        		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[CSS 3]]></category>
            <enclosure url="http://www.webmonkey.com/wp-content/uploads/2012/01/html-5-logo-bg-200x100.jpg" type="image/jpeg" length="48000" />
                    <description><![CDATA[<div class="rss_thumbnail"><img src="http://www.webmonkey.com/wp-content/uploads/2012/01/html-5-logo-bg.jpg" alt="&#8216;HTML5 Please&#8217; Helps You Decide Which Parts of HTML5 and CSS 3 to Use" /></div>A new website helps web developers decipher the often confusing world of HTML5 and CSS 3. Which elements are ready to use? Which are still not widely supported? And where can you find polyfills and fallbacks for older browsers? HTML5 Please has your answers.]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->
<p><img src="http://www.webmonkey.com/wp-content/uploads/2011/10/html5logo.jpg" />Keeping track of the ever-evolving HTML5 and CSS 3 support in today&#8217;s web browsers can be an overwhelming task. Sure you can <a href="http://www.webmonkey.com/2012/01/visually-stunning-redesign-showcases-the-3d-power-of-css/">use CSS animations to create some whiz-bang effects</a>, but should you? Which browsers support it? What should you do about older browsers?</p>
<p>The first question can be answered by <a href="http://caniuse.com/">When Can I Use</a>, which tracks browser support for HTML5 and CSS 3. You can then add tools like <a href="http://modernizr.com/">Modernizer</a> to detect whether or not a feature is supported, so that you can gracefully degrade or provide an alternate solution for browsers that don&#8217;t support the features you&#8217;re using.  But just what are those alternate solutions and polyfills? That&#8217;s what the new (somewhat poorly named) <a href="http://html5please.us/">HTML5 Please</a> site is designed to help with.</p>
<p>HTML5 Please offers a list of HTML5 elements and CSS 3 rules with an overview of browser support and any polyfills for each element listed (CSS 3 is the much more heavily documented of the two, which is why the HTML5 emphasis in the name is perhaps not the best choice). The creators of the site then go a step further and offer recommendations, &#8220;so you can decide if and how to put each of these features to use.&#8221;</p>
<p>The goal is to help you &#8220;use the new and shiny responsibly.&#8221;</p>
<p>HTML5 Please was created by Paul Irish, head of Google Chrome developer relations, Divya Manian, Web Opener for Opera Software, (along with <a href="https://github.com/h5bp/html5please/contributors">many others</a>) who point out that the recommendations offered on the site &#8220;represent the collective knowledge of developers who have been deep in the HTML5 trenches.&#8221; </p>
<p>The recommendations for HTML5 and CSS 3 features are divided into three groups &#8212; &#8220;use&#8221;, &#8220;use with caution&#8221; and &#8220;avoid&#8221;. The result is a site that makes it easy to figure out which new elements are safe to use (with polyfills) and which are still probably too new for mainstream work. If the misleading name bothers you, there&#8217;s also <a href="http://www.browsersupport.net/">Browser Support</a>, which offers similar data. </p>
<p>If you&#8217;d like to contribute to the project, head over to the <a href="https://github.com/h5bp/html5please">GitHub repo</a>.</p>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2012/01/html5-please-helps-you-decided-which-parts-of-html5-and-css-3-to-use/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>Opera 12 Swaps Scrolls for Swipes With New &#8216;Opera Reader&#8217;</title>
        <link>http://www.webmonkey.com/2011/10/opera-12-swaps-scrolls-for-swipes-with-new-opera-reader/</link>
        <comments>http://www.webmonkey.com/2011/10/opera-12-swaps-scrolls-for-swipes-with-new-opera-reader/#comments</comments>
        <pubDate>Mon, 24 Oct 2011 16:39:32 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/?p=52081</guid>
        		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS 3]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[paged media]]></category>
            <enclosure url="http://www.webmonkey.com/wp-content/uploads/2011/10/opera-reader-w.jpg" type="image/jpeg" length="48000" />
                    <description><![CDATA[<div class="rss_thumbnail"><img src="http://www.webmonkey.com/wp-content/uploads/2011/10/opera-reader-w.jpg" alt="Opera 12 Swaps Scrolls for Swipes With New &#8216;Opera Reader&#8217;" /></div>Opera Software has released an experimental version of its web browser with support for the company's new "paged media" proposal. Opera Reader, as the feature is known, transforms websites into something more akin to books and magazines where you can flip "pages" rather than scrolling.]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->
<p><div id="attachment_52082" class="wp-caption aligncenter" style="width: 590px"><a href="http://www.webmonkey.com/wp-content/uploads/2011/10/operapaged.jpg"><img src="http://www.webmonkey.com/wp-content/uploads/2011/10/operapaged.jpg" alt="" title="operapaged" width="580" height="354" class="size-full wp-image-52082" /></a><p class="wp-caption-text"><em>Alice in Wonderland</em> gets the fancy paged-layout treatment in Opera 12</p></div>Opera software has released an experimental labs build of Opera 12 with support for what the company is calling Opera Reader. </p>
<p>Håkon Wium Lie, Opera Software’s CTO and creator of cascading stylesheets, previously <a href="http://www.webmonkey.com/2011/10/css-paged-media-brings-book-smarts-to-the-web/">proposed a new set of CSS tools</a> that transform longer web pages into a more book-like experience, where the reader flips from page to page instead of scrolling down one long screen.</p>
<p>The new Opera Reader feature in Opera 12 is the first implementation of Lie&#8217;s proposed <a href="http://dev.w3.org/csswg/css3-gcpm/">Generated Content for Paged Media standard</a>. To try out the new Opera Reader and its book-like browsing experience, head on over to the <a href="http://labs.opera.com/downloads/">Opera Labs site</a> and download the latest build of Opera 12.</p>
<p>At its core, the Paged Media standard would offer web developers a way to paginate content &#8212; that is, take a single webpage and break it into multiple &#8220;pages,&#8221; with each page automatically fitted to the screen size of the device you&#8217;re using. For example, this article might be two &#8220;pages&#8221; when viewed on an iPad. However, because the pagination is done with CSS and the HTML remains as it is, there&#8217;s no added load time when you flip to the next page. So it&#8217;s not a tool that can easily be abused by publishers to mine extra pageviews. It adds all the good things about multi-page layouts and none of the bad.</p>
<p>If you&#8217;ve got Opera 12 installed, visit the new <a href="http://people.opera.com/cmills/orarticle/">Opera Reader demo site</a> where you can see some early experiments including the <a href="http://people.opera.com/howcome/2011/reader/aiw/index.html"><em>Alice in Wonderland</em> demo</a> shown above (note that the previous link only works in the latest build of Opera 12).</p>
<p>Keep in mind that this is an early version and so far the demos (and the browser support) are still very limited. Still, if you&#8217;d like to dive right in and learn how you can create book-like websites using the new Paged Media layout tools, check out the <a href="http://dev.opera.com/articles/view/opera-reader-a-new-way-to-read-the-web/">Opera Labs blog</a>, which walks you through all the new CSS rules and how to use them.</p>
<p><strong>See Also:</strong><br/></p>
<ul>
<li><a href="http://www.webmonkey.com/2011/10/css-paged-media-brings-book-smarts-to-the-web/">CSS ‘Paged Media’ Brings Book Smarts to the Web</a></li>
<li><a href="http://www.webmonkey.com/2011/10/amazon-embraces-html5-for-new-e-book-format/">Amazon Embraces HTML5 for New E-Book Format</a></li>
<li><a href="http://www.webmonkey.com/2011/05/adobe-envisions-brave-new-world-of-web-layouts-with-css-regions/">Adobe Envisions Brave New World of Web Layouts With ‘CSS Regions’</a></li>
</ul>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2011/10/opera-12-swaps-scrolls-for-swipes-with-new-opera-reader/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>Amazon Embraces HTML5 for New E-Book Format</title>
        <link>http://www.webmonkey.com/2011/10/amazon-embraces-html5-for-new-e-book-format/</link>
        <comments>http://www.webmonkey.com/2011/10/amazon-embraces-html5-for-new-e-book-format/#comments</comments>
        <pubDate>Mon, 24 Oct 2011 15:32:54 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/?p=52058</guid>
        		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[CSS 3]]></category>
		<category><![CDATA[kindle]]></category>
            <enclosure url="http://www.webmonkey.com/wp-content/uploads/2011/10/kindleformat8.jpg" type="image/jpeg" length="48000" />
                    <description><![CDATA[<div class="rss_thumbnail"><img src="http://www.webmonkey.com/wp-content/uploads/2011/10/kindleformat8.jpg" alt="Amazon Embraces HTML5 for New E-Book Format" /></div>Amazon&#8217;s new full-color Kindle Fire tablet will arrive next month and with it will come a new e-book format that uses web standards to take advantage of the Fire&#8217;s new and improved features. The new format, Kindle Format 8 (KF8), uses HTML5, CSS 3 formatting rules, embedded custom fonts and SVG graphics to create a [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->
<p><div id="attachment_52060" class="wp-caption aligncenter" style="width: 590px"><a href="http://www.webmonkey.com/wp-content/uploads/2011/10/kindleformat8.jpg"><img src="http://www.webmonkey.com/wp-content/uploads/2011/10/kindleformat8.jpg" alt="" title="kindleformat8" width="580" height="274" class="size-full wp-image-52060" /></a><p class="wp-caption-text">The new Kindle Format 8 uses HTML5 and CSS for better looking books and graphic novels</p></div>Amazon&#8217;s new full-color Kindle Fire tablet will arrive next month and with it will come a new e-book format that uses web standards to take advantage of the Fire&#8217;s new and improved features.</p>
<p>The new format, <a href="http://www.amazon.com/gp/feature.html?ie=UTF8&amp;docId=1000729511">Kindle Format 8</a> (KF8), uses HTML5, CSS 3 formatting rules, embedded custom fonts and SVG graphics to create a richer toolset for book designers. It also means that if you can build a website, you can build a book.</p>
<p>KF8 isn&#8217;t the first e-book format to use HTML under the hood. Both EPUB and Mobi &#8212; the current Kindle format &#8212; are both built on HTML, but KF8 will be the first to embrace nearly all of HTML5 and its associated tools like CSS 3 and SVG. </p>
<p>With KF8 e-book designers can use the same tools web designers have long relied on to handle richer layout options like sidebars, pull quotes, callouts and other common print design elements that don&#8217;t translate well to the limited options of current e-book formats. The new tools will be particularly useful for creating better visuals in children&#8217;s e-books and graphic novels.</p>
<p>Interestingly, by making it possible to create e-books using the same tools you&#8217;d use to create a website, Amazon may be inadvertently making the web the new home of e-books. So far Amazon hasn&#8217;t released many specifics surrounding its KF8 format, but if KF8 is essentially a wrapper around HTML5 and CSS 3 then presumably it won&#8217;t be too hard to strip away that wrapper. What would be left behind will likely be a &#8220;e-book&#8221; that&#8217;s really just a single page of HTML and CSS &#8212; perfect for the web.</p>
<p>When browsers begin to support tools like the proposed <a href="http://dev.w3.org/csswg/css3-gcpm/">Generated Content for Paged Media</a> specification, it will likely be just as easy to markup and release the raw HTML version of an e-book &#8212; and <a href="http://www.webmonkey.com/2011/10/css-paged-media-brings-book-smarts-to-the-web/">let the browser paginate and format it</a> &#8212; as it is to put it in Amazon&#8217;s storefront where the Kindle can paginate and format it.</p>
<p>Whether or not such an easy dual publishing route is actually possible will be clearer when Amazon releases its updated Kindle Publisher Tools. Amazon hasn&#8217;t set a date yet, but you can <a href="http://www.amazon.com/gp/html-forms-controller/pub-tools-html5-signup">sign up to be notified</a> when the new tools are available.</p>
<p>Amazon&#8217;s Kindle Fire will be the first Kindle to support the new KF8 format, but according to Amazon support for KF8 in the new e-ink Kindles and the various Kindle apps will be added &#8220;in coming months.&#8221;</p>
<p><strong>See Also:</strong><br/></p>
<ul>
<li><a href="http://www.webmonkey.com/2011/10/css-paged-media-brings-book-smarts-to-the-web/">CSS ‘Paged Media’ Brings Book Smarts to the Web</a></li>
<li><a href="http://www.webmonkey.com/2011/09/amazons-silk-web-browser-adds-new-twist-to-old-idea/">Amazon’s Silk Web Browser Adds New Twist to Old Idea</a></li>
<li><a href="http://www.webmonkey.com/2011/03/the-future-of-css-finally-sane-layout-tools/">The Future of CSS: Finally, Sane Layout Tools</a></li>
</ul>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2011/10/amazon-embraces-html5-for-new-e-book-format/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>Creating Shapes in Pure CSS</title>
        <link>http://www.webmonkey.com/2011/08/creating-shapes-in-pure-css/</link>
        <comments>http://www.webmonkey.com/2011/08/creating-shapes-in-pure-css/#comments</comments>
        <pubDate>Fri, 12 Aug 2011 15:56:35 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/?p=51355</guid>
        		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS 3]]></category>
            <enclosure url="http://www.webmonkey.com/wp-content/uploads/2011/08/infinitycss.jpg" type="image/jpeg" length="48000" />
                    <description><![CDATA[<div class="rss_thumbnail"><img src="http://www.webmonkey.com/wp-content/uploads/2011/08/infinitycss.jpg" alt="Creating Shapes in Pure CSS" /></div>One of the best things about CSS 3 is that it reduces the need to use images in your designs. That means fewer HTTP requests, few bytes to download and fewer files to keep track of. Need rounded corners? That&#8217;s pure CSS now. How about drop shadows? Yes, pure CSS. The infinity symbol? Actually yes, [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->
<p><a href="http://www.webmonkey.com/wp-content/uploads/2011/08/infinitycss.jpg"><img src="http://www.webmonkey.com/wp-content/uploads/2011/08/infinitycss.jpg" alt="" title="infinitycss" width="200" class="alignleft size-full wp-image-51359" /></a>One of the best things about CSS 3 is that it reduces the need to use images in your designs. That means fewer HTTP requests, few bytes to download and fewer files to keep track of. Need <a href="http://www.webmonkey.com/2010/02/a_universal_solution_for_rounded_corners_in_your_designs/">rounded corners</a>? That&#8217;s pure CSS now. How about drop shadows? Yes, pure CSS. The infinity symbol? Actually yes, you can draw the symbol for infinity with nothing more than a few lines of CSS.</p>
<p>The web developers over at CSS-Tricks have put together a page showing off the <a href="http://css-tricks.com/examples/ShapesOfCSS/">basic shapes you can create</a> using only a single HTML element and all the CSS you can eat. Everything from the obvious, squares and circles, to the somewhat trickier five-pointed star or infinity symbol (contributed by developers <a href="http://kitmacallister.com/2011/css-only-5-point-star/">Kit MacAllister</a> and <a href="http://nicolasgallagher.com/">Nicolas Gallagher</a> respectively).</p>
<p>If you need to add some basic shapes to your site, but don&#8217;t want the overhead of image files, the code on CSS-Tricks might fit the bill. The page has been up for some time now, but it&#8217;s periodically updated with new shapes so it&#8217;s worth adding to your bookmarks. You should, however, keep in mind that not all of the code works in every web browser. </p>
<p><strong>See Also:</strong><br/></p>
<ul>
<li><a href="http://www.webmonkey.com/2010/06/twitter-fail-whale-rendered-in-pure-css/">Twitter Fail Whale Rendered in Pure CSS</a></li>
<li><a href="http://www.webmonkey.com/2010/10/target-the-future-with-css-3s-target-rule/">Target the Future With CSS 3’s :target Rule</a></li>
<li><a href="http://www.webmonkey.com/2010/07/the-solar-system-rendered-in-css-and-html/">The Solar System, Rendered in CSS and HTML</a></li>
<li><a href="http://www.webmonkey.com/2010/02/a_universal_solution_for_rounded_corners_in_your_designs/">A Universal Solution for Rounded Corners in Your Designs</a></li>
</ul>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2011/08/creating-shapes-in-pure-css/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>Popular HTML5 Boilerplate Releases v2.0</title>
        <link>http://www.webmonkey.com/2011/08/popular-html5-boilerplate-releases-v2-0/</link>
        <comments>http://www.webmonkey.com/2011/08/popular-html5-boilerplate-releases-v2-0/#comments</comments>
        <pubDate>Wed, 10 Aug 2011 17:45:29 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/?p=51338</guid>
        		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Web Basics]]></category>
		<category><![CDATA[CSS 3]]></category>
            <enclosure url="http://www.webmonkey.com/wp-content/uploads/2011/08/boilerplate.jpg" type="image/jpeg" length="48000" />
                    <description><![CDATA[<div class="rss_thumbnail"><img src="http://www.webmonkey.com/wp-content/uploads/2011/08/boilerplate.jpg" alt="Popular HTML5 Boilerplate Releases v2.0" /></div>The developers behind HTML5 Boilerplate have released version 2.0 of their boilerplate HTML, CSS and JavaScript templates for quickly prototyping HTML5 designs. You can grab a copy of HTML5 Boilerplate v2.0 from the HTML5 Boilerplate website. Version 2.0 of HTML5 Boilerplate has several significant changes, including ditching the traditional reset stylesheet for normalize.css. Normalize is [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->
<p><a href="http://www.webmonkey.com/wp-content/uploads/2011/08/boilerplate.jpg"><img src="http://www.webmonkey.com/wp-content/uploads/2011/08/boilerplate.jpg" alt="" title="boilerplate" width="300" height="37" class="alignleft size-full wp-image-51344" /></a>The developers behind HTML5 Boilerplate have released version 2.0 of their boilerplate HTML, CSS and JavaScript templates for quickly prototyping HTML5 designs. </p>
<p>You can grab a copy of HTML5 Boilerplate v2.0 from the <a href="http://html5boilerplate.com/#v2">HTML5 Boilerplate website</a>.</p>
<p>Version 2.0 of HTML5 Boilerplate has several significant changes, including ditching the traditional reset stylesheet for <a href="https://github.com/necolas/normalize.css/">normalize.css</a>. Normalize is a bit different in that it retains useful browser defaults and only resets those elements necessary to achieve cross-browser default styling consistency. It&#8217;s a minor point, but my favorite part of normalize.css is that it doesn&#8217;t litter your dev tools (Firebug, WebKit Inspector, etc) with endless reset rules.</p>
<p>Other new features in HTML5 Boilerplate include support for <a href="https://github.com/scottjehl/Respond">Respond.js</a> (which helps if your site uses a &quot;<a href="http://www.webmonkey.com/2011/04/how-to-have-your-media-queries-and-eat-ie-too/">mobile first</a>&quot; approach), faster build times (up to 80 percent faster according to the release notes) and, with v2, your IE 6 visitors will now be prompted to install Chrome Frame.</p>
<p>For more details on everything that&#8217;s new in HTML5 Boilerplate v2, head on over to the official site and read through the <a href="http://html5boilerplate.com/#v2">changelog</a>. Perhaps the most refreshing thing about this release, is this note in the FAQs:</p>
<blockquote>
<p>Do I need to upgrade my sites to a new version?</p>
<p>Nope. So far there have been no critical bugs within our code that we&#8217;ve fixed from version to version. There are some nice changes that reduce your stress, but updating your HTML or CSS to the new stuff is probably more effort than it&#8217;s worth.</p>
<p>However, the .htaccess and Build Script you probably didn&#8217;t edit and therefore can be dropped into your existing sites with little hassle and likely a significant reward. So feel free to update those, and also update your Modernizr and jQuery versions to the latest versions they have.</p>
</blockquote>
<p><strong>See Also:</strong><br/></p>
<ul>
<li><a href="http://www.webmonkey.com/2010/08/html5-reset-speeds-up-site-development-with-handy-boilerplate-code/">HTML5 Reset Speeds Up Site Development With Handy Boilerplate Code</a></li>
<li><a href="http://www.webmonkey.com/2011/04/start-small-build-big-with-320-and-up/">Start Small, Build Big With &#8217;320 and Up&#8217;</a></li>
<li><a href="http://www.webmonkey.com/2010/07/css3-pie-lets-you-have-your-css-and-ie-it-too/">CSS3 Pie Lets You Have Your CSS and IE It, Too</a></li>
</ul>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2011/08/popular-html5-boilerplate-releases-v2-0/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>Adobe Envisions Brave New World of Web Layouts With &#8216;CSS Regions&#8217;</title>
        <link>http://www.webmonkey.com/2011/05/adobe-envisions-brave-new-world-of-web-layouts-with-css-regions/</link>
        <comments>http://www.webmonkey.com/2011/05/adobe-envisions-brave-new-world-of-web-layouts-with-css-regions/#comments</comments>
        <pubDate>Tue, 10 May 2011 14:38:25 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/?p=50877</guid>
        		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Basics]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[CSS 3]]></category>
            <enclosure url="http://www.webmonkey.com/wp-content/uploads/2011/05/cssregions2.jpg" type="image/jpeg" length="48000" />
                    <description><![CDATA[<div class="rss_thumbnail"><img src="http://www.webmonkey.com/wp-content/uploads/2011/05/cssregions2.jpg" alt="Adobe Envisions Brave New World of Web Layouts With &#8216;CSS Regions&#8217;" /></div>It&#8217;s cold here in the Webmonkey offices, Adobe has unveiled a web browser. No, Adobe isn&#8217;t really getting into the web browser game, but it does have a few tricks it would like to show off to the world. Adobe&#8217;s new demo web browser exists solely to demonstrate the company&#8217;s proposed CSS Regions layout tool. [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->
<p><div id="attachment_50878" class="wp-caption aligncenter" style="width: 590px"><a href="http://www.webmonkey.com/wp-content/uploads/2011/05/cssregions.jpg"><img src="http://www.webmonkey.com/wp-content/uploads/2011/05/cssregions.jpg" alt="" title="cssregions" width="580" height="360" class="size-full wp-image-50878" /></a><p class="wp-caption-text">The CSS Regions Galaxy Tab demo </p></div>It&#8217;s cold here in the Webmonkey offices, Adobe has unveiled a web browser. No, Adobe isn&#8217;t really getting into the web browser game, but it does have a few tricks it would like to show off to the world. Adobe&#8217;s new demo web browser exists solely to demonstrate the company&#8217;s proposed CSS Regions layout tool.</p>
<p>If you&#8217;d like to check out the demo browser, head over to <a href="http://labs.adobe.com/downloads/cssregions.html">Adobe Labs</a> and download a copy. Be sure to open up the included sample pages to see how the HTML and CSS is structured.</p>
<p>Adobe has been <a href="http://www.webmonkey.com/2010/11/adobe-shows-off-fancy-webkit-based-typography/">working on CSS Regions for some time</a>, trying to develop a set of CSS layout tools that make it easy to build complex, print-style layouts on the web &#8212; think text that flows around circular regions, or text structured into shapes. If Adobe can convince browser makers and the W3C to get onboard with the idea, web design might be about to make a huge leap forward. Or backward, depending on how you look at it. </p>
<p>Adobe&#8217;s CSS Regions proposal is a back-to-the-future effort to bring some of the layout tools print designers have enjoyed for years to the web. </p>
<p>Typography on the web has improved by leaps and bounds since the dark days of the blink tag and six universal fonts, but it&#8217;s still a long way from ideal. Sure there are great ways to <a href="http://www.webmonkey.com/2010/08/typekit-teams-up-with-adobe-to-offer-more-web-fonts/">serve custom fonts</a>, and you can even use JavaScript libraries like <a href="http://www.webmonkey.com/2010/11/lettering-js-makes-complex-typography-easy/">Lettering.js for even more control over your layout</a>. But when it comes to the flow of text around images, pull quotes and other block level elements, well, web typography falls apart.</p>
<p>While web developers have hacked together grids and other print-style layout tools for years, such tools are essentially hacks and limited in their capabilities. But that will change in the near future. The W3C is currently toying with no less than four new grid-based standards designed to handle multi-column text, wrapping text around images and other fancy layout techniques. We&#8217;ve <a href="http://www.webmonkey.com/2011/03/the-future-of-css-finally-sane-layout-tools/">looked at the Flexible Box Model</a>, Template Layout (based on Mozilla&#8217;s XUL syntax), and Grid Positioning modules before, but so far none are finalized.</p>
<p>Adobe&#8217;s CSS Regions is the new entry in the list of layout schemes under consideration. Adobe submitted its CSS Regions proposal to the W3C early this year and it has subsequently been split into two separate but related drafts, the <a href="http://dev.w3.org/csswg/css3-regions/">CSS Regions Module Editor&#8217;s Draft</a> and the <a href="http://dev.w3.org/csswg/css3-exclusions/">CSS Exclusions Module Editor&#8217;s Draft</a>. </p>
<p>CSS Regions shares some similarities with the other proposals (and from what I can tell would play nice with them if multiple proposals end up becoming finalized specs), but goes a good bit further, by abstracting sections of an HTML page into &#8220;regions.&#8221; </p>
<p>Regions can be both positive and negative space. In other words, you can write CSS rules to flow text <em>into</em> a region &#8212; say, as below, a pie graph &#8212; or <em>around</em> a region (as in the image of Arches National Park at the top of this post).</p>
<div id="attachment_50879" class="wp-caption aligncenter" style="width: 590px"><a href="http://www.webmonkey.com/wp-content/uploads/2011/05/cssregions2.jpg"><img src="http://www.webmonkey.com/wp-content/uploads/2011/05/cssregions2.jpg" alt="" title="cssregions2" width="580" height="337" class="size-full wp-image-50879" /></a><p class="wp-caption-text">Inserting text into regions </p></div>
<p>Among the interesting layout tools in the CSS Regions proposal are Story Threading, Region Styling and the arbitrary shapes and exclusions concept. Story Threading allows text to flow in multiple disjointed shapes (not just columns) which you can define in CSS and HTML. That means you could easily flow two side-by-side columns of text around an image or a pullquote the way print magazines often do.  </p>
<p>The second interesting element is Region Styling, which allows content to be styled based on the region it flows into. For example, if the first few lines of your text fall into one region, you could style it with a different font than the rest, which falls in a different region. Curiously, this part of the proposed Regions spec is not currently implemented in Adobe&#8217;s demo browser.</p>
<p>The arbitrary content portion of the draft spec is what allows the layout shown in the screenshots above &#8212; flowing content into or around arbitrary shapes.</p>
<p>Lest you think that Adobe is simply trying to improve the web &#8212; which may well be true &#8212; nevertheless, it&#8217;s worth bearing in mind Adobe&#8217;s own agenda. We suspect it&#8217;s no accident that the company has used WebKit to power the CSS Regions testing browser. WebKit is, after all, the engine that powers the iPad&#8217;s web browser. </p>
<p>With Apple banning Flash from its iOS devices, Adobe has little in the way of iPad-friendly tools to offer its big magazine clients. Given that publishers are betting heavily on the iPad&#8217;s ability to save their business model, the more iPad tools Adobe can offer, the happier magazine publishers will be. By rolling CSS Regions into WebKit for a demo, Adobe is already one step closer to a toe-hold on iOS devices.</p>
<p>Still, in this case, assuming the W3C pushes forward with the Regions spec, and that browser makers include support in future releases, what&#8217;s good for Adobe may end up being good for the web as a whole. </p>
<p>Of course whether or not multi-column layouts on the iPad (or any other web browser) are a good idea is open to debate. Multiple columns combined with scrolling often makes for a reading nightmare. Certainly in the hands of poor designers the results will be ugly, but that doesn&#8217;t mean the tools themselves are to blame.</p>
<p><strong>See Also:</strong><br/></p>
<ul>
<li><a href="http://www.webmonkey.com/2011/03/the-future-of-css-finally-sane-layout-tools/">The Future of CSS: Finally, Sane Layout Tools</a></li>
<li><a href="http://www.webmonkey.com/2010/11/adobe-shows-off-fancy-webkit-based-typography/">Adobe Shows Off Fancy WebKit-Based Typography</a></li>
<li><a href="http://www.webmonkey.com/2010/11/lettering-js-makes-complex-typography-easy/">Lettering.js Makes Complex Typography Easy</a></li>
</ul>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2011/05/adobe-envisions-brave-new-world-of-web-layouts-with-css-regions/feed/</wfw:commentRss>
        <slash:comments>10</slash:comments>

        
    </item>
    
    <item>
        <title>CSS 3 Brings Iconic Mad Men Titles to Life on the Web</title>
        <link>http://www.webmonkey.com/2011/05/css-3-brings-iconic-man-men-titles-to-life-on-the-web/</link>
        <comments>http://www.webmonkey.com/2011/05/css-3-brings-iconic-man-men-titles-to-life-on-the-web/#comments</comments>
        <pubDate>Wed, 04 May 2011 15:00:32 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/?p=50838</guid>
        		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Visual Design]]></category>
		<category><![CDATA[CSS 3]]></category>
            <enclosure url="http://www.webmonkey.com/wp-content/uploads/2011/05/madmanimation.jpg" type="image/jpeg" length="48000" />
                    <description><![CDATA[<div class="rss_thumbnail"><img src="http://www.webmonkey.com/wp-content/uploads/2011/05/madmanimation.jpg" alt="CSS 3 Brings Iconic Mad Men Titles to Life on the Web" /></div>Web developer Anthony Calzadilla has recreated the opening title sequence of AMC&#8217;s Mad Men using only CSS 3 animations and some carefully crafted images. The result is an impressive showcase of what you can do with the animation powers available in CSS 3. Head on over the official Mad Manimation demo and click the &#8220;Watch&#8221; [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->
<p><a href="http://www.webmonkey.com/wp-content/uploads/2011/05/madmanimation.jpg"><img src="http://www.webmonkey.com/wp-content/uploads/2011/05/madmanimation.jpg" alt="" title="madmanimation" width="580" height="328" class="alignleft size-full wp-image-50837" /></a>Web developer Anthony Calzadilla has recreated the opening title sequence of AMC&#8217;s Mad Men using only CSS 3 animations and some carefully crafted images. The result is an impressive showcase of what you can do with the animation powers available in CSS 3.</p>
<p>Head on over the <a href="http://animatable.com/demos/madmanimation/">official Mad Manimation demo</a> and click the &#8220;Watch&#8221; link. Mad Manimation works well in WebKit browsers, including the iPhone. We also had no trouble watching it with Firefox&#8217;s new <a href="http://www.webmonkey.com/2011/04/how-to-use-firefoxs-new-aurora-release-channel/">Aurora channel release</a>.</p>
<p>If you&#8217;d like to know how Calzadilla pulled it off (with help from <a href="http://hellogeri.com/">Geri Coady</a> and <a href="http://hardboiledwebdesign.com/">Andy Clarke</a>), be sure to <a href="http://www.anthonycalzadilla.com/2011/04/behind-the-scenes-of-mad-manimation/">read his write up on the process behind the animation</a>.</p>
<p>Calzadilla points out that the not-yet-released <a href="http://animatable.com/">Animatable</a> would have made the staging and animating process easier. Animatable looks impressive &#8212; an online IDE for CSS 3 animations &#8212; but sadly it&#8217;s not available to the general public just yet. You can see a preview of the project in <a href="http://vimeo.com/22174448">this video</a>.</p>
<p>And just to head off the Flash fans who will note that they could have built the Mad Manimation demo in 1995 using only gotoAndPlay() and some duct tape, sure, we all know that, but the web has moved on.</p>
<p><strong>See Also:</strong><br/></p>
<ul>
<li><a href="http://www.webmonkey.com/2011/04/speed-up-your-website-with-css-3/">Speed Up Your Website With CSS 3</a></li>
<li><a href="http://www.webmonkey.com/2011/01/transform-your-site-with-css-3/">Transform Your Site With CSS 3</a></li>
<li><a href="http://www.webmonkey.com/2009/12/slick_web_design_gets_easier_thanks_to_css_3_s_transform_tools/">Slick Web Design Gets Easier Thanks to CSS 3’s Transform Tools</a></li>
<li><a href="http://www.webmonkey.com/2010/08/simplify-css-3-with-online-code-generators/">Simplify CSS 3 With Online Code Generators</a></li>
</ul>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2011/05/css-3-brings-iconic-man-men-titles-to-life-on-the-web/feed/</wfw:commentRss>
        <slash:comments>10</slash:comments>

        
    </item>
    </channel>
</rss>