<?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>No Mod Required &#187; xhtml</title>
	<atom:link href="http://www.drunkenfist.com/304/category/web/xhtml/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.drunkenfist.com/304</link>
	<description>Rob Larsen writes on entertainment, sports and culture.</description>
	<lastBuildDate>Wed, 08 Feb 2012 02:28:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Google Doctype &#8211; First Pass? Very cool.</title>
		<link>http://www.drunkenfist.com/304/2008/05/14/google-doctype-first-pass-very-cool/</link>
		<comments>http://www.drunkenfist.com/304/2008/05/14/google-doctype-first-pass-very-cool/#comments</comments>
		<pubDate>Wed, 14 May 2008 21:19:25 +0000</pubDate>
		<dc:creator>rob</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[tips-and-tricks]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.drunkenfist.com/304/?p=4552</guid>
		<description><![CDATA[Google Doctype, as introduced by Mark Pilgrim: The open web is the web built on open standards: HTML, JavaScript, CSS, and more. The open web is a beautiful soup of barely compatible clients and servers. It comprises billions of pages, millions of users, and thousands of browser-based applications. You can access the open web with [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://code.google.com/docreader/#p(doctype)s(doctype)t(Welcome)">Google Doctype</a>, as introduced by <a href="http://diveintomark.org/">Mark Pilgrim</a>:</p>
<blockquote><p>The open web is the web built on open standards: HTML, JavaScript, CSS, and more. The open web is a beautiful soup of barely compatible clients and servers. It comprises billions of pages, millions of users, and thousands of browser-based applications. You can access the open web with open source and proprietary browsers, on open source and proprietary operating systems, on open source and proprietary hardware.</p>
<p>Google has built its business here, on the open web, and we want to help you build here too. To that end, we are happy to announce the formation of an encyclopedia for web developers, by web developers: Google Doctype.</p></blockquote>
<p><a href="http://google-code-updates.blogspot.com/2008/05/introducing-google-doctype.html">Google Code Blog: Introducing Google Doctype</a></p>
<p>Personally, I'm excited by this development (both practically and philosophically) and will likely contribute wherever it makes sense for me to lend a hand.  Looking at it quickly some of the HOWTO information is already very useful (<a href="http://code.google.com/docreader/#p(doctype)s(doctype)t(ArticlesXSS)">the web security</a> information especially) and it will only improve with time as more and more dedicated people get involved with the project. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.drunkenfist.com/304/2008/05/14/google-doctype-first-pass-very-cool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Might Have to Start Bribing People to Upgrade to Internet Explorer 7- Fun With The CSS :hover pseudo-class.</title>
		<link>http://www.drunkenfist.com/304/2007/09/21/i-might-have-to-start-bribing-people-to-upgrade-to-internet-explorer-7-fun-with-the-css-hover-pseudo-class/</link>
		<comments>http://www.drunkenfist.com/304/2007/09/21/i-might-have-to-start-bribing-people-to-upgrade-to-internet-explorer-7-fun-with-the-css-hover-pseudo-class/#comments</comments>
		<pubDate>Fri, 21 Sep 2007 14:26:20 +0000</pubDate>
		<dc:creator>rob</dc:creator>
				<category><![CDATA[browsers]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[ie7]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.drunkenfist.com/304/2007/09/21/i-might-have-to-start-bribing-people-to-upgrade-to-internet-explorer-7-fun-with-the-css-hover-pseudo-class/</guid>
		<description><![CDATA[There's absolutely nothing groundbreaking about the following code sample. People (who are lucky enough to have more time to mess around) have been doing this sort of experimentation for a while now. Thing is, this one is so simple and so plainly useful I just have to toss it out there for your (my?) enjoyment. [...]]]></description>
			<content:encoded><![CDATA[<p>There's absolutely nothing groundbreaking about the following code sample. People (who are lucky enough to have more time to mess around) have been doing this sort of experimentation for a while now. Thing is, this one is so simple and so plainly useful I just have to toss it out there for your (my?) enjoyment.<br />
<span id="more-3989"></span><br />
Check out the following sample. It's just a simple show/hide, but I just love the simplicity of the code that runs it.</p>
<p><iframe src="/web/samples/cool-hover-with-dl.html" style="width:350px; height:300px;"></iframe></p>
<p>With a <code>class="more"</code> attached the DL, all we need to run the above is this</p>
<p><code><br />
dl.more dd{<br />
display:none;<br />
}<br />
dl.more:hover dd{<br />
display:block;<br />
}<br />
</code></p>
<p>There are two things I like about that:</p>
<ol>
<li>It's as simple as it gets. The only thing simpler than coding that would be not coding anything.</li>
<li>It makes sense.  A lot of times those "more" links are the spitting image of a dt dd pair, except it's unrelated tags in an arbitrary structure (something like DIV > P + DIV) so using ready-made structure just feels right. </li>
</ol>
<p>Yeah, there are potential issues. The one that sticks out to me is it's not accessible, since with no mouse there's no :hover. That said, with any solution involving a mouse, accessibility becomes an issue, so it's not better or worse than any other solution that doesn't address the mouse-less users.</p>
<p>The other obvious issue is that IE6 doesn't support <code>:hover</code> on anything but links, so there would need to be a script based solution to get this to work in what is still one of the biggest browsers out there.* But I can dream, can't I?</p>
<p>*For this site, Firefox is actually the number one browser, followed by IE6 and then IE7. The combination of IE versions are still the dominant browser platform.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drunkenfist.com/304/2007/09/21/i-might-have-to-start-bribing-people-to-upgrade-to-internet-explorer-7-fun-with-the-css-hover-pseudo-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Searching for Just the Right HTML Markup- List With Lead-in</title>
		<link>http://www.drunkenfist.com/304/2007/09/18/searching-for-just-the-right-html-markup-list-with-lead-in/</link>
		<comments>http://www.drunkenfist.com/304/2007/09/18/searching-for-just-the-right-html-markup-list-with-lead-in/#comments</comments>
		<pubDate>Tue, 18 Sep 2007 17:59:18 +0000</pubDate>
		<dc:creator>rob</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.drunkenfist.com/304/2007/09/18/searching-for-just-the-right-html-markup-list-with-lead-in/</guid>
		<description><![CDATA[I'm constantly trying to come up with little markup patterns that make semantic sense and make it easier for me to create requested layouts without having to resort to a bunch of extra classes and IDs. One common design element that I've been bothered by recently* but haven't sat down and figured out looks like [...]]]></description>
			<content:encoded><![CDATA[<p>I'm constantly trying to come up with little markup patterns that make semantic sense <strong>and</strong> make it easier for me to create requested layouts without having to resort to a bunch of extra classes and IDs. </p>
<p>One common design element that I've been bothered by recently* but haven't sat down and figured out looks like this:</p>
<p><img src='http://www.drunkenfist.com/304/wp-content/uploads/2007/09/list-with-lead-in.jpg' alt='list-with-lead-in.jpg' /></p>
<p>Today I took a step back** and came up with this to represent it:</p>
<div class="code-sample"><code>
<pre>
&lt;dl&gt;
&lt;dt&gt;Sessions focus on:&lt;/dt&gt;
&lt;dd&gt;
&lt;ul&gt;
&lt;li&gt;Configuring, tuning and understanding hardware servers and software applications&lt;/li&gt;
&lt;li&gt;Client side issues related to Mac OS X computing and management&lt;/li&gt;
&lt;li&gt;Integration with PSx, UNIX, Telephony and other environments &lt;/li&gt;
&lt;li&gt;Managing Macs in an enterprise environment&lt;/li&gt;
&lt;li&gt;A Jump start for admin newbies&lt;/li&gt;
&lt;li&gt;Best Practices for 3rd Party Tools IntegrationM&lt;/li&gt;
&lt;/ul&gt;
&lt;/dd&gt;
&lt;/dl&gt;
</pre>
<p></code>
</div>
<p>Which feels just about right to me- it captures the relationship between the lead-in (the lead in being the term defined) and the list (the list being the definition of the lead-in), and would allow me to style the whole thing with no additional markup.</p>
<p>I'll just go ahead and file that one away.</p>
<p>*I've seen it on four or five different sites I've built in the past year and not so often before that. So up until recently it was never enough of a recurring pattern for me to even worry about.</p>
<p>**amazingly, since this markup will end up on a Drupal site. It's a wonder I even bothered since Drupal is pretty much on the complete opposite end of the spectrum from my minimalist coding style. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.drunkenfist.com/304/2007/09/18/searching-for-just-the-right-html-markup-list-with-lead-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Worked On This:</title>
		<link>http://www.drunkenfist.com/304/2006/12/13/i-worked-on-this/</link>
		<comments>http://www.drunkenfist.com/304/2006/12/13/i-worked-on-this/#comments</comments>
		<pubDate>Thu, 14 Dec 2006 01:09:28 +0000</pubDate>
		<dc:creator>rob</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Rob Larsen]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.drunkenfist.com/304/2006/12/13/i-worked-on-this/</guid>
		<description><![CDATA[I didn't actually build anything on this site, but in the couple of weeks I did work on it I did do some XML/XSLT work on the CMS part, a wee bit of JavaScript and mashed the CSS up to work correctly with the IE family. This Is Cable &#8211; Cable Services And Providers]]></description>
			<content:encoded><![CDATA[<p>I didn't actually <strong>build</strong> anything on this site, but in the couple of weeks I did work on it I did do some <a href="http://hannonhill.com/">XML/XSLT work on the CMS part</a>, a wee bit of JavaScript and mashed the CSS up to work correctly with the IE family. </p>
<p><a href="http://thisiscable.com/">This Is Cable &#8211; Cable Services And Providers</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.drunkenfist.com/304/2006/12/13/i-worked-on-this/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New site.</title>
		<link>http://www.drunkenfist.com/304/2006/11/17/new-site/</link>
		<comments>http://www.drunkenfist.com/304/2006/11/17/new-site/#comments</comments>
		<pubDate>Fri, 17 Nov 2006 15:10:29 +0000</pubDate>
		<dc:creator>rob</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[Rob Larsen]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.drunkenfist.com/304/2006/11/17/new-site/</guid>
		<description><![CDATA[I built out a couple of xHTML/CSS templates for the FASTforward '07 microsite. Wicked. Someone else put the thing into production so blame him for any errors (*looks over shoulder to see if anyone catches me throwing people under the bus Peyton Manning style*)]]></description>
			<content:encoded><![CDATA[<p>I built out a couple of xHTML/CSS templates for the <a href="http://fastforward07.com/">FASTforward '07</a> microsite. <em>Wicked</em>.</p>
<p>Someone else put the thing into production so blame him for any errors (*looks over shoulder to see if anyone catches me throwing people under the bus Peyton Manning style*)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drunkenfist.com/304/2006/11/17/new-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

