<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1" -->
<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/"
	>

<channel>
	<title>alttag</title>
	<link>http://alttag.org</link>
	<description></description>
	<pubDate>Thu, 29 Nov 2007 08:28:52 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1</generator>
	<language>en</language>
			<item>
		<title>What happened to the menu tag?</title>
		<link>http://alttag.org/2007/11/29/whats-happened-to-the-menu-tag/</link>
		<comments>http://alttag.org/2007/11/29/whats-happened-to-the-menu-tag/#comments</comments>
		<pubDate>Thu, 29 Nov 2007 08:24:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alttag.org/2007/11/29/whats-happened-to-the-menu-tag/</guid>
		<description><![CDATA[We all try to write our markup to be as semantic as possible. We use proper heading tags, paragraph tags, strong instead of b, em instead of i, and tables only for tabular data. Yet when it comes to our sites &#8220;navigation&#8221;, we use an unordered list.
]]></description>
			<content:encoded><![CDATA[<p>We all try to write our markup to be as semantic as possible. We use proper heading tags, paragraph tags, <code>strong</code> instead of <code>b</code>, <code>em</code> instead of <code>i</code>, and tables only for tabular data. Yet when it comes to our sites &#8220;navigation&#8221;, we use an unordered list. <a href="http://alttag.org/2007/11/29/whats-happened-to-the-menu-tag/#more-14" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://alttag.org/2007/11/29/whats-happened-to-the-menu-tag/feed/</wfw:commentRss>
		</item>
		<item>
		<title>An issue and a fix</title>
		<link>http://alttag.org/2007/10/20/an-issue-and-a-fix/</link>
		<comments>http://alttag.org/2007/10/20/an-issue-and-a-fix/#comments</comments>
		<pubDate>Sat, 20 Oct 2007 15:14:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alttag.org/2007/10/20/an-issue-and-a-fix/</guid>
		<description><![CDATA[Firefox 2.0.0.8 breaks some of the layouts. It breaks on the 3 column versions that use negative margins that are the same size or bigger that the element it is on. It looks like there have been at least 3 bugs raised in the Mozilla bug tracker for this issue and it is being actively [...]]]></description>
			<content:encoded><![CDATA[<p>Firefox 2.0.0.8 breaks some of the layouts. It breaks on the 3 column versions that use negative margins that are the same size or bigger that the element it is on. It looks like there have been at least 3 bugs raised in the Mozilla bug tracker for this issue and it is being actively worked on. The main one is here: <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=400406">https://bugzilla.mozilla.org/show_bug.cgi?id=400406</a></p>
<p>One solution would be to inject dynamic content after the container using the :after pseudo-element</p>
<pre>container:after{
    content: ".";
    height: 0;
    clear: both;
    visibility: hidden;
    display: block;
}</pre>
<p>This seems to fix the issue but is not as clean. I have only done some quick tests with this and have not looked at it in Safari.</p>
<p><em>Update:</em> I knew there was a name for this! It is called the <a href="http://csscreator.com/?q=attributes/containedfloat.php" title="Original clearfix source" target="_blank">clearfix</a> <a href="http://www.positioniseverything.net/easyclearing.html" title="P.I.E clearfix info" target="_blank">method</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://alttag.org/2007/10/20/an-issue-and-a-fix/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Liquid Spaced Out Columns</title>
		<link>http://alttag.org/2007/02/15/liquid-spaced-out-columns/</link>
		<comments>http://alttag.org/2007/02/15/liquid-spaced-out-columns/#comments</comments>
		<pubDate>Fri, 16 Feb 2007 03:44:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alttag.org/2007/02/15/liquid-spaced-out-columns/</guid>
		<description><![CDATA[In the previous Space Out Columns post I promised to follow up with some info on liquid layouts, so here we go:
]]></description>
			<content:encoded><![CDATA[<p>In the <a href="http://alttag.org/2007/02/08/spaced-out-columns/" title="Spaced Out Columns">previous Space Out Columns post</a> I promised to follow up with some info on liquid layouts, so here we go: <a href="http://alttag.org/2007/02/15/liquid-spaced-out-columns/#more-12" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://alttag.org/2007/02/15/liquid-spaced-out-columns/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Spaced Out Columns</title>
		<link>http://alttag.org/2007/02/08/spaced-out-columns/</link>
		<comments>http://alttag.org/2007/02/08/spaced-out-columns/#comments</comments>
		<pubDate>Fri, 09 Feb 2007 04:01:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alttag.org/?p=11</guid>
		<description><![CDATA[In the comments for my A List Apart article, Fredrik Frodlund mentioned he was “not sure it would work if you use blocks that have white space between them”. There actually was a demonstration of this in the three column example with the nested two column layout. I only quickly commented on it, so I [...]]]></description>
			<content:encoded><![CDATA[<p>In the comments for my <a href="http://alistapart.com/articles/multicolumnlayouts/" title="Multi-Column Layouts Climb Out of the Box" target="_blank">A List Apart article</a>, <a href="http://www.frippz.se/" target="_blank" title="http://www.frippz.se/">Fredrik Frodlund</a> <a href="http://alistapart.com/comments/multicolumnlayouts?page=1#4" title="Pretty close though" target="_blank">mentioned</a> he was “<q cite="http://alistapart.com/comments/multicolumnlayouts?page=1#4">not sure it would work if you use blocks that have white space between them</q>”. There actually was a <a href="http://alistapart.com/d/multicolumnlayouts/3ColLiquidWithContent.html" target="_blank" title="Example">demonstration</a> of this in the three column example with the nested two column layout. I only quickly commented on it, so I thought I would expand on it here. <a href="http://alttag.org/2007/02/08/spaced-out-columns/#more-11" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://alttag.org/2007/02/08/spaced-out-columns/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The new phone book&#8217;s here! The new phone book&#8217;s here!</title>
		<link>http://alttag.org/2007/02/06/the-new-phone-books-here-the-new-phone-books-here/</link>
		<comments>http://alttag.org/2007/02/06/the-new-phone-books-here-the-new-phone-books-here/#comments</comments>
		<pubDate>Tue, 06 Feb 2007 12:59:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alttag.org/?p=10</guid>
		<description><![CDATA[Check it out: http://alistapart.com/articles/multicolumnlayouts
This site uses a combination of the techniques presented in the article. I have a red border on the container and a gray border on the body. By overlapping them, I get the effect of having a border around the rail.
]]></description>
			<content:encoded><![CDATA[<p>Check it out: <a href="http://alistapart.com/articles/multicolumnlayouts" title="A list apart: Multi-Column Layouts Climb Out of the Box" target="_blank">http://alistapart.com/articles/multicolumnlayouts</a><br />
This site uses a combination of the techniques presented in the article. I have a red border on the container and a gray border on the body. By overlapping them, I get the effect of having a border around the rail.</p>
]]></content:encoded>
			<wfw:commentRss>http://alttag.org/2007/02/06/the-new-phone-books-here-the-new-phone-books-here/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Why alt tag</title>
		<link>http://alttag.org/2007/02/06/why-alt-tag/</link>
		<comments>http://alttag.org/2007/02/06/why-alt-tag/#comments</comments>
		<pubDate>Tue, 06 Feb 2007 07:03:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alttag.org/wp/?p=9</guid>
		<description><![CDATA[So many times when people talk about web site accessibility and SEO, one of the main things mentioned is to make sure all of your images have an &#8216;alt tag&#8217; to provide descriptive text for screen readers and search engines. Even Google says this in their Webmaster Help Center, in the Webmaster Guidelines and the [...]]]></description>
			<content:encoded><![CDATA[<p>So many times when people talk about web site accessibility and <acronym title="search engine optimization">SEO</acronym>, one of the main things mentioned is to make sure all of your images have an &#8216;alt tag&#8217; to provide descriptive text for screen readers and search engines. Even <a href="http://www.google.com/" title="Google" target="_blank">Google</a> says this in their <a href="http://www.google.com/support/webmasters/" title="Google: Webmaster Help Center" target="_blank">Webmaster Help Center</a>, in the <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=35769" title="Google: Webmaster Guidelines" target="_blank">Webmaster Guidelines</a> and the <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=40349&amp;ctx=related" title="Google: How can I create a Google-friendly site?" target="_blank"> How can I create a Google-friendly site</a> sections. Of course what they mean is alt attribute. What I hope this site can do is clarify some of the confusion with web development, and maybe present some new ideas and techniques. Thoughts and ideas are welcomed.</p>
]]></content:encoded>
			<wfw:commentRss>http://alttag.org/2007/02/06/why-alt-tag/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
