<?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>BrianBehrend.com</title>
	<atom:link href="http://www.brianbehrend.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brianbehrend.com</link>
	<description>Tech. Games. Design.</description>
	<lastBuildDate>Mon, 09 Apr 2012 17:38:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>background-size property overwritten by background shorthand by Firefox</title>
		<link>http://www.brianbehrend.com/2012/04/background-size-property-overwritten-by-background-shorthand-by-firefox/</link>
		<comments>http://www.brianbehrend.com/2012/04/background-size-property-overwritten-by-background-shorthand-by-firefox/#comments</comments>
		<pubDate>Sat, 07 Apr 2012 12:12:50 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[background-size]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[retina]]></category>

		<guid isPermaLink="false">http://www.brianbehrend.com/?p=550</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/articles/">Articles</a></p>As I start to use new CSS3 properties more often new issues are arising that I didn&#8217;t have to deal with before. Building out a new responsive site now that is using retina images for the mobile site so I&#8217;m using the background-size property extensively. I ran into a bug in Firefox 11 where in [...]]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/articles/">Articles</a></p><p>As I start to use new CSS3 properties more often new issues are arising that I didn&#8217;t have to deal with before. Building out a new responsive site now that is using retina images for the mobile site so I&#8217;m using the <code>background-size</code> property extensively. I ran into a bug in Firefox 11 where in some situations the property was ignored.</p>
<p>Here&#8217;s an example of the code that did not work in Firefox:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>112
113
114
115
116
117
118
119
120
121
122
123
124
125
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.author</span><span style="color: #3333ff;">:after </span><span style="color: #00AA00;">&#123;</span>
	background-<span style="color: #000000; font-weight: bold;">size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">30px</span> <span style="color: #933;">30px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">content</span><span style="color: #00AA00;">:</span> <span style="color: #ff0000;">&quot;&quot;</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">30px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-32px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">30px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.author-brian</span> <span style="color: #6666ff;">.author</span><span style="color: #3333ff;">:after </span><span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">/img/avatar-brian.png</span><span style="color: #00AA00;">&#41;</span> <span style="color: #000000; font-weight: bold;">right</span> <span style="color: #000000; font-weight: bold;">top</span> <span style="color: #993333;">no-repeat</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>Turns out, using the <code>background</code> shorthand was overwriting the size. Adding the <code>background-size</code> property to the more specific author declaration fixed the issue.</p>
<p>It looks like this is actually correct behavior according to the spec. Using the shorthand overwrites <strong>all</strong> other background properties. From the Standarista site&#8217;s notes on <a href="http://www.standardista.com/css3/css3-background-properties/#bg6">CSS3 <code>background</code> properties</a>:</p>
<blockquote>
<p>If you use the background shorthand and fail to declare any of the individual properties that make up the shorthand, those properties will revert to their default values [...].</p>
</blockquote>
<p>I thought it was time to learn the more detailed background shorthand that includes the new properties like <code>background-size</code> and <code>background-clip</code>. However, the W3C&#8217;s spec for it isn&#8217;t actually supported by seemingly any browsers yet. Here&#8217;s what the new shorthand declaration of the code <em>should</em> be:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>123
124
125
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.author-brian</span> <span style="color: #6666ff;">.author</span><span style="color: #3333ff;">:after </span><span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">/img/avatar-brian.png</span><span style="color: #00AA00;">&#41;</span> <span style="color: #000000; font-weight: bold;">right</span> <span style="color: #000000; font-weight: bold;">top</span> / <span style="color: #933;">30px</span> <span style="color: #933;">30px</span> <span style="color: #993333;">no-repeat</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>Unfortunately, that valid line of CSS breaks in every browser I tried it on and results in the image not displaying at all. I ended up needing to  define the <code>background-size</code> property separately <em>after</em> the shorthand declaration:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>123
124
125
126
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.author-brian</span> <span style="color: #6666ff;">.author</span><span style="color: #3333ff;">:after </span><span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">/img/avatar-brian.png</span><span style="color: #00AA00;">&#41;</span> <span style="color: #000000; font-weight: bold;">right</span> <span style="color: #000000; font-weight: bold;">top</span> <span style="color: #993333;">no-repeat</span><span style="color: #00AA00;">;</span>
	background-<span style="color: #000000; font-weight: bold;">size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">30px</span> <span style="color: #933;">30px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>The actual code will vary depending on what you&#8217;re doing but the important thing is to not forget to include the other background properties even if you&#8217;re not specifying them in your shorthand.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianbehrend.com/2012/04/background-size-property-overwritten-by-background-shorthand-by-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pictures of People Scanning QR Codes</title>
		<link>http://www.brianbehrend.com/2012/03/pictures-of-people-scanning-qr-codes/</link>
		<comments>http://www.brianbehrend.com/2012/03/pictures-of-people-scanning-qr-codes/#comments</comments>
		<pubDate>Mon, 05 Mar 2012 12:50:39 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[qr codes]]></category>
		<category><![CDATA[tumblr]]></category>

		<guid isPermaLink="false">http://www.brianbehrend.com/?p=560</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/links/">Links</a></p><p><a href="http://picturesofpeoplescanningqrcodes.tumblr.com/" rel="bookmark" title="Pictures of People Scanning QR Codes" target="_blank">http://picturesofpeoplescanningqrcodes.tumblr.com/</a></p>Great tumblr blog showing all the people who actually scan QR codes in public.]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/links/">Links</a></p><p><a href="http://picturesofpeoplescanningqrcodes.tumblr.com/" rel="bookmark" title="Pictures of People Scanning QR Codes" target="_blank">http://picturesofpeoplescanningqrcodes.tumblr.com/</a></p><p><a href="http://picturesofpeoplescanningqrcodes.tumblr.com/">Great tumblr blog</a> showing all the people who actually scan QR codes in public.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianbehrend.com/2012/03/pictures-of-people-scanning-qr-codes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Measuring Android Version Fragmentation</title>
		<link>http://www.brianbehrend.com/2012/02/measuring-android-version-fragmentation/</link>
		<comments>http://www.brianbehrend.com/2012/02/measuring-android-version-fragmentation/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 13:08:48 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[stats]]></category>

		<guid isPermaLink="false">http://www.brianbehrend.com/?p=563</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/links/">Links</a></p><p><a href="http://blog.marketnet.com/index.php/2012/02/27/measuring-android-version-fragmentation/" rel="bookmark" title="Measuring Android Version Fragmentation" target="_blank">http://blog.marketnet.com/index.php/2012/02/27/measuring-android-version-fragmentation/</a></p>My thoughts and some graphs on how bad of a problem Android&#8217;s fragmentation is for developers and users.]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/links/">Links</a></p><p><a href="http://blog.marketnet.com/index.php/2012/02/27/measuring-android-version-fragmentation/" rel="bookmark" title="Measuring Android Version Fragmentation" target="_blank">http://blog.marketnet.com/index.php/2012/02/27/measuring-android-version-fragmentation/</a></p><p>My thoughts and some graphs on how bad of a problem <a href="http://blog.marketnet.com/index.php/2012/02/27/measuring-android-version-fragmentation/">Android&#8217;s fragmentation</a> is for developers and users.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianbehrend.com/2012/02/measuring-android-version-fragmentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Fix for the iOS Orientation Change Zoom Bug</title>
		<link>http://www.brianbehrend.com/2012/01/a-fix-for-the-ios-orientation-change-zoom-bug/</link>
		<comments>http://www.brianbehrend.com/2012/01/a-fix-for-the-ios-orientation-change-zoom-bug/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 13:16:50 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://www.brianbehrend.com/?p=568</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/links/">Links</a></p><p><a href="http://filamentgroup.com/lab/a_fix_for_the_ios_orientationchange_zoom_bug/" rel="bookmark" title="A Fix for the iOS Orientation Change Zoom Bug" target="_blank">http://filamentgroup.com/lab/a_fix_for_the_ios_orientationchange_zoom_bug/</a></p>Code from the guys at the Filament Group that fixes that annoying bug where iOS incorrectly zooms your site when you flip from landscape to portrait and vice versa.]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/links/">Links</a></p><p><a href="http://filamentgroup.com/lab/a_fix_for_the_ios_orientationchange_zoom_bug/" rel="bookmark" title="A Fix for the iOS Orientation Change Zoom Bug" target="_blank">http://filamentgroup.com/lab/a_fix_for_the_ios_orientationchange_zoom_bug/</a></p><p><a href="http://filamentgroup.com/lab/a_fix_for_the_ios_orientationchange_zoom_bug/">Code</a> from the guys at the Filament Group that fixes that annoying bug where iOS incorrectly zooms your site when you flip from landscape to portrait and vice versa.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianbehrend.com/2012/01/a-fix-for-the-ios-orientation-change-zoom-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Look what I&#8217;ve got!</title>
		<link>http://www.brianbehrend.com/2011/12/look-what-ive-got/</link>
		<comments>http://www.brianbehrend.com/2011/12/look-what-ive-got/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 13:44:27 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[baby]]></category>
		<category><![CDATA[Family]]></category>

		<guid isPermaLink="false">http://www.brianbehrend.com/?p=574</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/images/">Images</a></p><p><a href="http://www.brianbehrend.com/wp-content/uploads/me-e-birth.jpg" title="image" rel="lightbox"><img src="http://www.brianbehrend.com/wp-content/uploads/me-e-birth.jpg" alt="image" width="640" /></a></p>Moments after she came out of mommy here&#8217;s me and the new Baby E. Everyone is happy and healthy.]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/images/">Images</a></p><p><a href="http://www.brianbehrend.com/wp-content/uploads/me-e-birth.jpg" title="image" rel="lightbox"><img src="http://www.brianbehrend.com/wp-content/uploads/me-e-birth.jpg" alt="image" width="640" /></a></p><p>Moments after she came out of mommy here&#8217;s me and the new Baby E. Everyone is happy and healthy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianbehrend.com/2011/12/look-what-ive-got/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Color Thief</title>
		<link>http://www.brianbehrend.com/2011/11/color-thief/</link>
		<comments>http://www.brianbehrend.com/2011/11/color-thief/#comments</comments>
		<pubDate>Sat, 26 Nov 2011 13:27:06 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://www.brianbehrend.com/?p=571</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/links/">Links</a></p><p><a href="http://lokeshdhakar.com/projects/color-thief/" rel="bookmark" title="Color Thief" target="_blank">http://lokeshdhakar.com/projects/color-thief/</a></p>From the creator of the original javascript lightbox comes Color Thief, a jQuery plugin that analyzes the colors in a given image and returns the dominant color and the color palette. Has some incredible usage possibilites both from from a design angle and also in improving usability. Definitely looking for an excuse to use this [...]]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/links/">Links</a></p><p><a href="http://lokeshdhakar.com/projects/color-thief/" rel="bookmark" title="Color Thief" target="_blank">http://lokeshdhakar.com/projects/color-thief/</a></p><p>From the creator of the <strong>original</strong> javascript lightbox comes <a href="http://lokeshdhakar.com/projects/color-thief/">Color Thief</a>, a jQuery plugin that analyzes the colors in a given image and returns the dominant color and the color palette. Has some incredible usage possibilites both from from a design angle and also in improving usability. Definitely looking for an excuse to use this on a project.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianbehrend.com/2011/11/color-thief/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RIP Steve Jobs. 1955 &#8211; 2011.</title>
		<link>http://www.brianbehrend.com/2011/10/rip-steve-jobs-1955-2011/</link>
		<comments>http://www.brianbehrend.com/2011/10/rip-steve-jobs-1955-2011/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 01:47:48 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.brianbehrend.com/?p=538</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/articles/">Articles</a></p>Shocked and saddened by the news of the passing of Apple CEO and founder Steve Jobs tonight. Despite his illness and his resignation as CEO just a few weeks ago, this still has affected me greatly. I had to excuse myself from dinner to compose myself and acknowledge my feelings when I learned of the [...]]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/articles/">Articles</a></p><p><a href="http://www.brianbehrend.com/wp-content/uploads/steve-jobs-death.jpg"><img src="http://www.brianbehrend.com/wp-content/uploads/steve-jobs-death-675x448.jpg" alt="" title="steve-jobs-death" width="675" height="448" class="aligncenter size-large wp-image-541" /></a></p>
<p>Shocked and saddened by the news of the passing of Apple CEO and founder Steve Jobs tonight. Despite his illness and his resignation as CEO just a few weeks ago, this still has affected me greatly. I had to excuse myself from dinner to compose myself and acknowledge my feelings when I learned of the news tonight, via a push message from CNN&#8217;s iPhone app of course. As US President Barack Obama put it, &#8220;There may be no greater tribute to Steve&#8217;s success than the fact that much of the world learned of his passing on a device he invented.&#8221;</p>
<p>From <a href="http://www.apple.com/stevejobs/">Apple.com</a>: </p>
<blockquote>
<p>Apple has lost a visionary and creative genius, and the world has lost an amazing human being. Those of us who have been fortunate enough to know and work with Steve have lost a dear friend and an inspiring mentor. Steve leaves behind a company that only he could have built, and his spirit will forever be the foundation of Apple.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.brianbehrend.com/2011/10/rip-steve-jobs-1955-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Infojocks Sports Graphics</title>
		<link>http://www.brianbehrend.com/2011/07/infojocks-sports-graphics/</link>
		<comments>http://www.brianbehrend.com/2011/07/infojocks-sports-graphics/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 13:17:22 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Sports]]></category>
		<category><![CDATA[infographic]]></category>
		<category><![CDATA[poster]]></category>
		<category><![CDATA[stats]]></category>

		<guid isPermaLink="false">http://www.brianbehrend.com/?p=527</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/links/">Links</a></p><p><a href="http://www.infojocks.com/" rel="bookmark" title="Infojocks Sports Graphics" target="_blank">http://www.infojocks.com/</a></p>I love sports. I love designs. I lust infographics. What could be better than an awesomely designed poster that beautifully and nerdily displays detailed sports statistics? Designer Jeremy Yingling creates and sells great looking posters and prints that illustrate sports history through various types of data visualization techniques. The logo is great too. Definitely a [...]]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/links/">Links</a></p><p><a href="http://www.infojocks.com/" rel="bookmark" title="Infojocks Sports Graphics" target="_blank">http://www.infojocks.com/</a></p><div id="attachment_528" class="wp-caption aligncenter" style="width: 777px"><a href="http://www.infojocks.com/"><img src="http://www.brianbehrend.com/wp-content/uploads/infojocks-tosu.gif" alt="Infojocks - Ohio State" title="infojocks-tosu" width="767" height="439" class="size-full wp-image-528" /></a><p class="wp-caption-text">I can only assume this chart is showing all Ohio State&#039;s various NCAA violations.</p></div>
<p>I love sports. I love designs. I lust infographics. What could be better than an awesomely designed poster that beautifully and nerdily displays detailed sports statistics? Designer Jeremy Yingling creates and sells great looking posters and prints that illustrate sports history through various types of data visualization techniques. The logo is great too. Definitely a Ohio/Pennsylvania area bias right now (Jeremey is an Ohio U grad), but hopefully <a href="http://www.infojocks.com/">Infojocks</a> will add some Texas stuff so I have an excuse to give him some money.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianbehrend.com/2011/07/infojocks-sports-graphics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Content Choreography &#8211; Content Strategy in a Responsive World</title>
		<link>http://www.brianbehrend.com/2011/07/content-choreography-content-strategy-in-a-responsive-world/</link>
		<comments>http://www.brianbehrend.com/2011/07/content-choreography-content-strategy-in-a-responsive-world/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 12:31:02 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[content strategy]]></category>
		<category><![CDATA[media queries]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[responsive web design]]></category>

		<guid isPermaLink="false">http://www.brianbehrend.com/?p=517</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/articles/">Articles</a></p>Trent Walton has written (and designed) a great (and beautiful) article on dealing with content in responsive web designs that adapt to the width of visitors&#8217; browsers. Content Choreography is a good discussion of content organization, changing designs too much between various widths, and the workflow needed when creating responsive web sites. Definitely a must [...]]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/articles/">Articles</a></p><p><a href="http://trentwalton.com/2011/07/14/content-choreography/"><img src="http://www.brianbehrend.com/wp-content/uploads/content-choreography.png" alt="" title="content-choreography" width="900" height="311" class="aligncenter size-full wp-image-518" /></a></p>
<p>Trent Walton has written (and designed) a great (and beautiful) article on dealing with content in responsive web designs that adapt to the width of visitors&#8217; browsers. <a href="http://trentwalton.com/2011/07/14/content-choreography/">Content Choreography</a> is a good discussion of content organization, changing designs too much between various widths, and the workflow needed when creating responsive web sites. Definitely a must read for any designer or developer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianbehrend.com/2011/07/content-choreography-content-strategy-in-a-responsive-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MediaElement.js HTML5 Video Player</title>
		<link>http://www.brianbehrend.com/2011/07/mediaelement-js-html5-video-player/</link>
		<comments>http://www.brianbehrend.com/2011/07/mediaelement-js-html5-video-player/#comments</comments>
		<pubDate>Sat, 16 Jul 2011 20:30:42 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.brianbehrend.com/?p=515</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/links/">Links</a></p><p><a href="http://mediaelementjs.com/" rel="bookmark" title="MediaElement.js HTML5 Video Player" target="_blank">http://mediaelementjs.com/</a></p>Great JavaScript script for HTML5 video and audio players with a Flash fallback. Includes plugins support and skins. Visitors get a good and consistent media experience regardless of what browser they&#8217;re using.]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.brianbehrend.com/tumblog/links/">Links</a></p><p><a href="http://mediaelementjs.com/" rel="bookmark" title="MediaElement.js HTML5 Video Player" target="_blank">http://mediaelementjs.com/</a></p><p>Great JavaScript script for HTML5 video and audio players with a Flash fallback. Includes plugins support and skins. Visitors get a good <em>and</em> consistent media experience regardless of what browser they&#8217;re using.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianbehrend.com/2011/07/mediaelement-js-html5-video-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

