<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">

    <channel>

    <title>A List Apart: Comments on: CSS Design: Taming Lists</title>
    <link>{url_title_path=articles/}</link>
    <description></description>
    <dc:language>en</dc:language>
    <dc:rights>Copyright 2012</dc:rights>
    <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />




    <item>
      <title>Posted by: davon</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/#1</link>
      <guid>http://www.alistapart.com/comments/taminglists/#1</guid>         
	  
      <description><![CDATA[&gt; (the other character, \0022, is a space)
Should be \0020. \0022 is the quotation mark.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Tanya</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/#2</link>
      <guid>http://www.alistapart.com/comments/taminglists/#2</guid>         
	  
      <description><![CDATA[Corrected. Thanks!]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: David Eisenberg</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/#3</link>
      <guid>http://www.alistapart.com/comments/taminglists/#3</guid>         
	  
      <description><![CDATA[I will probably use this article as a reference when I talk about "advanced styles" in my XHTML class.
Although I'm not going to and re-author all my breadcrumbs in my existing pages.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Erik</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/#4</link>
      <guid>http://www.alistapart.com/comments/taminglists/#4</guid>         
	  
      <description><![CDATA[Perfect! I was just wrestling with how to handle a list of links yesterday! Not only does this answer every question for my personal site, it solves a thorny issue for a menu on a site for my job. Thanks so much.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Scott Allison</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/#5</link>
      <guid>http://www.alistapart.com/comments/taminglists/#5</guid>         
	  
      <description><![CDATA[I'm just saying somthing... this was okay. it's not like you need a big long article about it, but, it's cool. I'll probably end up using something in here sometime or another. Thanks ALA]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: nurb</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/#6</link>
      <guid>http://www.alistapart.com/comments/taminglists/#6</guid>         
	  
      <description><![CDATA[Ala has been needing a good article like this for a while now.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: John Colby</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/#7</link>
      <guid>http://www.alistapart.com/comments/taminglists/#7</guid>         
	  
      <description><![CDATA[Thanks - I will also be including this on my reference list.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Randi A.</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/#8</link>
      <guid>http://www.alistapart.com/comments/taminglists/#8</guid>         
	  
      <description><![CDATA[Can anyone explain why Mozilla (v.1.2a) only shows every other horizontal line in the real world example? Dump here: [img]http://tippetevling.net/ala/realworld.png[/img]]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Lach</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/#9</link>
      <guid>http://www.alistapart.com/comments/taminglists/#9</guid>         
	  
      <description><![CDATA[One thing I think this article lacked was a reference when using the class="first" and class="last" examples for specifically styling the first and last elements of lists. Instead of having to embed this in your HTML with an ugly class, you can use the CSS2 and CSS 3 selectors :first-child and :last-child respectively.

Hence li.first becomes li:first-child (li element which is the first child of its parent element), and li.last becomes (li element which is the last child of its parent element). As far as I'm aware, it's only supported in Mozilla at the moment, but if you're talking about examples which only work in Mozilla and Opera, you might as well include those examples too.

Apart from that, a great article Mark!]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Lach</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/#10</link>
      <guid>http://www.alistapart.com/comments/taminglists/#10</guid>         
	  
      <description><![CDATA[Oops, that should have read "li.last becomes li:last-child" yada yada.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: apartness</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P10/#11</link>
      <guid>http://www.alistapart.com/comments/taminglists/#11</guid>         
	  
      <description><![CDATA[Thanks, Lach. Maybe the reason Mark excluded those CSS2/3 selectors from his article is that they are poorly supported in many popular mainstream browsers and he wanted to offer only practical advice.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Joe</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P10/#12</link>
      <guid>http://www.alistapart.com/comments/taminglists/#12</guid>         
	  
      <description><![CDATA[Nice article, it will come in handy in our work.

One thing though, when viewing the article using IE6 the real world navbar jumps to the left on the page when the mouse enters. It then remains there without problem unless the page is refreshed and then it jumps again to the left on mouse over. I did follow the link to the Asset Surveillance site and here the menu stays in place.

Why would this happen?]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Ray</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P10/#13</link>
      <guid>http://www.alistapart.com/comments/taminglists/#13</guid>         
	  
      <description><![CDATA[Yes, sweet article, I too noticed the jumping IE6 phenom, for what it's worth, it is IE6 on a WinXP box for me. 

No movement noted in NN6.2.3. 

And there appears to be no movement in IE5.5 on a cranky old Win98SE powered P166 either. Go figure.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Ricky</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P10/#14</link>
      <guid>http://www.alistapart.com/comments/taminglists/#14</guid>         
	  
      <description><![CDATA[What are the differences between XHTML 2.0's NL and the good ole UL/OL?]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Ray</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P10/#15</link>
      <guid>http://www.alistapart.com/comments/taminglists/#15</guid>         
	  
      <description><![CDATA[While we're doing a forsenic exam, I also noticed in your first positioning example, where you set margin and padding to zero, and suggest 
- "Note that the markers lie outside of the DIV. If the containing box were the BODY of the HTML document, the markers might be rendered outside of the browser window, in effect vanishing."
I noticed immediately, they vanish in both IE6 and IE5.5 anyway.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Michael Efford</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P10/#16</link>
      <guid>http://www.alistapart.com/comments/taminglists/#16</guid>         
	  
      <description><![CDATA[The menu system doesn't jump when taken out of the ALA code framework, so maybe there is some conflicting styles somewhere that are causing the problem. Furthemore, the rollover effect seems sluggish on IE6 PC when viewed within the article, it's much faster when by itself.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Liorean</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P10/#17</link>
      <guid>http://www.alistapart.com/comments/taminglists/#17</guid>         
	  
      <description><![CDATA[1. Why throw things into a div#button? You could move that part of the styling to the ul, maybe adding .menu so that you can have one or several lists of that type in the page along with regular uls.

2. One thing I found missing here is the definition lists. With definition lists you are from the beginning rid of the bullets, and can throw in a description of the link in the definition data tag. Then you can supply the user with two alternate stylesheets, one with definition data displayed, the other with it hidden.
(Using a style switcher such as the one Paul Sowden presented in an earlier ALA article, or the one I created for my page. Or serverside. Or the mechanism built into mozilla.)]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: James A Payne</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P10/#18</link>
      <guid>http://www.alistapart.com/comments/taminglists/#18</guid>         
	  
      <description><![CDATA[Heh, I noticed this article on ALA just after I was looking at part of w3c's XHMTL2 working draft... more particularly, the part about the nl tag.

Great work :-)]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Dave Anderson</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P10/#19</link>
      <guid>http://www.alistapart.com/comments/taminglists/#19</guid>         
	  
      <description><![CDATA[The real-world example looks fine in Mozilla 1.2a Linux. Perhaps it is a Mozilla 1.2a Windows bug.

You can always report a mozilla bug at http://bugzilla.mozilla.org/]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: zachariah</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P20/#20</link>
      <guid>http://www.alistapart.com/comments/taminglists/#20</guid>         
	  
      <description><![CDATA[I have been using lists and css to make my menus for a while now, and it took a while to see how to make them do exactly what I wanted. The inline list is especially nice because it works in text-only as well as visual browsers. 

Most importantly it means we are using the proper markup for the data. Eventually if all the data on the web is marked-up properly, then search engines can do stuff like searching for lists with class "grocery" and qutoes with class "famous" or "thomas-jefferson" -- wouldn't that be nice?]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: flounder</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P20/#21</link>
      <guid>http://www.alistapart.com/comments/taminglists/#21</guid>         
	  
      <description><![CDATA[I too, just yesterday, was again looking for a better solution for my menu lists. Thanks for the great article!]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by:</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P20/#22</link>
      <guid>http://www.alistapart.com/comments/taminglists/#22</guid>         
	  
      <description><![CDATA[Great article. I've been trying to implement ul for the menu on a design I've been working on.

I'm having trouble creating a verticle navigation bar with a ul.

Is it possible to have the list items to take up a percentage of the container div (say 14%) and display inline.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Mark</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P20/#23</link>
      <guid>http://www.alistapart.com/comments/taminglists/#23</guid>         
	  
      <description><![CDATA[I'm glad the article is being of help to some of you - that's why I wrote it.

As apartness noted, I'm pretty much into practical stuff, so I didn't go into CSS2/3 beyond the generated content (and that only because 2 of the 3 standards compliant browsers support it). I also didn't mention the proposed NL (which, from what I've read about it) will be quite nice once implemented by the browsers. As for DLs - they could take up a whole 'nother article them selves, and this one was already getting long. Maybe I'll write something up on Real World Style.

Thanks again for all the kind words - glad you are liking it!]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Big John</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P20/#24</link>
      <guid>http://www.alistapart.com/comments/taminglists/#24</guid>         
	  
      <description><![CDATA[The missing button divider lines are caused bu a vertical rounding error, a problem that I covered in this demo: 
http://users.rraz.net/mc_on_the_rocks/testpage/mozshift.html
IE has similar problems with absolute positioning.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by:</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P20/#25</link>
      <guid>http://www.alistapart.com/comments/taminglists/#25</guid>         
	  
      <description><![CDATA[aaa]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by:</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P20/#26</link>
      <guid>http://www.alistapart.com/comments/taminglists/#26</guid>         
	  
      <description><![CDATA[remember www.w3schools.com for lots of web tutorials.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Kevin W</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P20/#27</link>
      <guid>http://www.alistapart.com/comments/taminglists/#27</guid>         
	  
      <description><![CDATA[Definition lists actually do quite well with bullets (especially if you use a list-style-type such as square or circle that you don't see as much). I use definition lists everywhere on my site for changelogs, link lists, etc. and bullets really help when you've got multiple terms or definitions in one entry.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Marek</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P20/#28</link>
      <guid>http://www.alistapart.com/comments/taminglists/#28</guid>         
	  
      <description><![CDATA[You talk about the power of CSS in your article.
Thats nice and so but in real world simple things cannot even be put into CSS and therefore I think old good table-layouting is what will stay for 10 years, as css lacks much features, or maybe I am too ignorant to use them in which case you could post an example here or add additional paragraphs to your article covering my question...

Ofcourse the navigation links are likely lists, but lets
face it, I cannot do what I am told to do with CSS.
Look at the
http://my.tele2.ee/cadorsoft/vertcalinks.htm

and say how do I suppose to have that bullet image v e r t i c a l l y centered to the LI contents, or the othe question would be - if thats impossible with lists+css, then how do I fake it with DIVs ?

With Table-layouting this is a very simple task, but how the things should be done with css - I have NO IDEA!! 
Any feedback welcome...]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Dr. Noise</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P20/#29</link>
      <guid>http://www.alistapart.com/comments/taminglists/#29</guid>         
	  
      <description><![CDATA[I'm a web-design novice who is ready to learn. But, I want to learn it right, rather than just learn what I can to make it look good on my personal website. I think this article will really help me. I too, have created my menu using a table, JavaScript, and images. You can see it at http://fresco.freeyellow.com. Please be aware that all the non-compliant markup *will* make you cringe.
Anyway, the rollover is really slow for me, since I have a dial-up connection, and I'd like to change it, since it rolls over fast and renders fast. My only problem is that my buttons use a freeware font called Neuropol, that I really like, and would like to keep if I can, but I know not nearly everyone who may come across my site will have it on their system. What's the solution to this? Just set the style to that font, and declare some back-up fonts for those that don't have it? I like the idea of separating style from content, but there *is* still the issue that I am presenting my artwork on the web, and I want my website to look the way I want it to look. Am I just being a web-Nazi here, and do I need to just loosen up and realize that it's not too big a deal?
Please advise and thanks. ;)]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: rephorm</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P30/#30</link>
      <guid>http://www.alistapart.com/comments/taminglists/#30</guid>         
	  
      <description><![CDATA[I had come across the idea of inlining lists to make horizontal menus a while ago, and implemented one example of such on my personal website (http://www.rephorm.com).
It's good to see an article with more details and ideas. The results are very clean and managable menu source. To add an item, merely add an &lt;li&gt;.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Uwe von Loh</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P30/#31</link>
      <guid>http://www.alistapart.com/comments/taminglists/#31</guid>         
	  
      <description><![CDATA[I´ve experimented some months ego with the matter. See http://www.hofthiergarten.de/ 
Shouldn't we use &lt;dl&gt;, &lt;dt&gt; and &lt;dd&gt; tags instead of &lt;ul&gt; and &lt;li&gt; or are they forgotten, deprecated or whatever?
uvl 8-)]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by:</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P30/#32</link>
      <guid>http://www.alistapart.com/comments/taminglists/#32</guid>         
	  
      <description><![CDATA[I love rock & roll, put another dime on the jukebox baby. :-)
http://www.porn.com

:-)]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Noah Mittman</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P30/#33</link>
      <guid>http://www.alistapart.com/comments/taminglists/#33</guid>         
	  
      <description><![CDATA[Man, I'd been trying to solicit an article on this from ALA for months... glad to see the subject finally hitting the site.

I recently got to design out semantic markup, XHTML and CSS into the recent redesign of [url="http://www.res.com"]RES.com[/url] -- We were in an incredible rush to match the re-launch of the magazine, so the templates are not as far along and I'd hoped them to be by launch, but we're continuing to update and refine them on a daily basis, pretty much.

I think we hit the criticals: using styles on sematic markup like h1 and ul as much as possible, using absolute positioning and ordering main content at the top of the code for text and spoken browsers and slow connections, etc. There were some realistic compromises like using tables when certain table layout was needed and keeping the embed tag for flash (alt navigation is coming shortly). I would have liked to tap into pseudo-classes, multiple classes, and advanced selectors but they're not quite there yet. But there's enough in the browsers now that moving beyond Netscape 4 for our audience was a reality, and I'm hoping that it will help others either as inspiration, or at least a working example in a commercial site. :)

Anyone know of any other commericals sites doing the same? I'm very curious.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Bob E</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P30/#34</link>
      <guid>http://www.alistapart.com/comments/taminglists/#34</guid>         
	  
      <description><![CDATA[How about taking that real world example on more step? The next step is showing secondary menu items that are indented, and which are members of a list within a list.

Home
Hidden Cameras
 Wide angle
 Telephoto
CCTV Cameras
Employee Theft]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Dayn Riegel</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P30/#35</link>
      <guid>http://www.alistapart.com/comments/taminglists/#35</guid>         
	  
      <description><![CDATA[I noticed the IE6 "jump" as well -- and on top of that it causes the right-side menu on ALA to flop down to the bottom of the entire page, thus destroying the layout, in effect.

To be honest, I've noticed this so-called "jump" effect on my own pages and just thought I was a sorry-a coder of CSS. So I guess now I'm a bit happy it isn't just me.

Now, of course, I'm also worried that we've discovered an IE6/Win bug for CSS. In fact, just last night I was coding something, marked/coded an "a href" tag when added to a similar ALA-ish nav on my own quickly thrown together Web site and when I hovered over the mailto: the page jumped and bashed the nav all to bloody heck!

Any thoughts? Do I experiment more, post what I got somewhere so we can iron this out? Suggestions? Of course, we could keep this off the list and via email for anyone that has suggestions, etc. since I don't know if my post here is totally on topic.

Thanks!

-_- D.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Filipe Miguel Tavares</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P30/#36</link>
      <guid>http://www.alistapart.com/comments/taminglists/#36</guid>         
	  
      <description><![CDATA[Hi everyone! I'd like to know if one can move the strike line in relation to a character. I.e, with certain font familys, if you strike a 0 (zero), it will seem like an 8 (eight). Is there any way to prevent it?

Thanks in advace,
best regards,
Filipe]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Dave Anderson</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P30/#37</link>
      <guid>http://www.alistapart.com/comments/taminglists/#37</guid>         
	  
      <description><![CDATA[Track the bug-fixin' action at

http://bugzilla.mozilla.org/show_bug.cgi?id=171571]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Dave Anderson</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P30/#38</link>
      <guid>http://www.alistapart.com/comments/taminglists/#38</guid>         
	  
      <description><![CDATA[Check out the bug-fix'n action at

http://bugzilla.mozilla.org/show_bug.cgi?id=171571]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Jason</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P30/#39</link>
      <guid>http://www.alistapart.com/comments/taminglists/#39</guid>         
	  
      <description><![CDATA[Isnt this extension already available? See:
http://www.meyerweb.com/eric/css/edge/menus/demo.html]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Martijn ten Napel</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P40/#40</link>
      <guid>http://www.alistapart.com/comments/taminglists/#40</guid>         
	  
      <description><![CDATA[First of all, I want to say I'm very glad with the article and the way it shows what you can do if you push your CSS skills. 

Second of all, I want to say I'm 100% for seperating (semantic) markup from presentation, so please don't throw bombs at me for not agreeing on that either.

but...

So far I haven't read any discussion about the fact that the current state of CSS means you need to invest a lot to develop a technical skill. CSS is yet in an toddler state when it comes to user-friendliness.

Let me explain: if you own a corporate website, you hire people to do the presentation (i.e. CSS knowledgeable people and/or designers), you hire people that take care of the back-end and you want a system that enables your (decentralized) content producers to add new content to your website like they would be typing a Word document, so no technical skills required. right?

But the web is not a coporate place. Let's say you are an enthusiastic amateur historian and you know everything that happened to the place you live in since 1426. So want to share your enthusiasm and knowledge and you make a website on which you publish your latest discoveries.

Our amateur historian is probably not a web-techniques-savvy person, so he or she does use, let's say MS Frontpage, to produce and maintain the website. Goodbye seperation of structure and presentation, unless they push the right buttons by accident.

From an information point of view, that particular website could do very well with a good structured markup, so the likelihood that everyone in the world looking for the history of that particular place would end up on that website will be more likely. Am I right?

Sadly, if CSS gets more developed and more and more professional web producers start to make all those wonderful pages where markup and presentation is perfectly seperated, the information sources like our amateur historian will be pushed further and further into the dark corners of the WWW. While the website itself could be a unique and high valued source of specific information.

Unless Microsoft Frontpage will become so smart it produces the correct code. But my guess is that CSS (or any next generation language) needs to be developed into a more userfriendly tool first to be able to achieve that.

Any opinions about this? And the implications for the WWW as a little less unstructered information source?]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: apartness</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P40/#41</link>
      <guid>http://www.alistapart.com/comments/taminglists/#41</guid>         
	  
      <description><![CDATA[It's a bit off-topic, but what you're saying really comes down to a more basic fear that professionally designed and developed websites may marginalize less professionally designed and developed sites. In the case of your amateur historian, Google is the ultimate arbiter. If your hypothetical historian has written text and meta data with half an eye on the way search engines work, his or her site will get plenty of traffic from Google and AllTheWeb and other well-made search engines. If the content has merit it will retain many of its visitors, though if it's badly designed or has poor usability some percentage of those visitors will leave. Likewise if it's badly written many visitors will leave. But none of that has much of anything to do with the comprehensibility of CSS1 and CSS2.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Robin</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P40/#42</link>
      <guid>http://www.alistapart.com/comments/taminglists/#42</guid>         
	  
      <description><![CDATA[Strange effects in IE6 seem to me to be common - I have an unordered list forming the menu down the left hand side at www.elandigitalsystems.com. I used CSS to make it change colors on roll-over and do other pretty stuff which is just great. However I did find that IE6 (and I think only IE6) knocks the top item in any list sideways. 
Unable to find any solution I followed a kind suggestion from the CSS-discuss list to include a dummy list item at the top of each list and set display:none for this item in my CSS. That seems to look OK but I wish I knew what causes the problem...]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Mike Combs</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P40/#43</link>
      <guid>http://www.alistapart.com/comments/taminglists/#43</guid>         
	  
      <description><![CDATA[Thanks for the article -- it's a very useful compilation and distillation of some valuable techniques.

I want to disagree on your proposed HTML markup for breadcrumbs. Each breadcrumb should be a list item, not a nested list. If I give you directions to my house, it's a list of landmarks, not a hierachy of every street in the city.

I think, though, that it should be an ordered list, since it's from top to bottom. Changing the order of the breadcrumb list would make a difference in the way it's interpreted. CSS would hide the numbers and use symbols, as you've shown.

Just my 2 cents worth. I really appreciated the article because it so neatly traversed from theory to practical examples.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Louis St&#45;Amour</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P40/#44</link>
      <guid>http://www.alistapart.com/comments/taminglists/#44</guid>         
	  
      <description><![CDATA[In reality, however, you cannot compare breadcrumbs to real-world directions, since your "list of landmarks" is only going to ONE area--your house. Whereas online, a website will have many more destinations, and would therefore use a nested navigational style to sort them. Breadcrumbs are usually used in a directories, your suggestion would probably be more appropriate as a navigation bar--or for giving directions. ;)]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Spencer Fry</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P40/#45</link>
      <guid>http://www.alistapart.com/comments/taminglists/#45</guid>         
	  
      <description><![CDATA[I was thinking that ALA was slipping in content lately, but this was a fine article. Good work, ALA.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Martijn ten Napel</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P40/#46</link>
      <guid>http://www.alistapart.com/comments/taminglists/#46</guid>         
	  
      <description><![CDATA[apartness responded at http://www.alistapart.com/stories/taminglists/discuss/2/#ala-1013

I agree it is a bit off topic, but you refer to the search engines. That was exactly what was on my mind. Is well structured (X)HTML not one of the best ways to climb the rankings of the search engines?

And all of the other remarks about engaging writing - I totaly agree, but I had it taken as 'ceteris paribus' for the moment.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Simon</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P40/#47</link>
      <guid>http://www.alistapart.com/comments/taminglists/#47</guid>         
	  
      <description><![CDATA[Mark's article is excellent. It will prove to be a useful reference for me in the future. I've always had to wrestle with lists a bit and now Mark has given me some good pointers to make things easier.

I am looking forward to seeing what can also be done with the new &lt;nl&gt; element, to be introduced in XHTML 2.0:
http://www.w3.org/TR/xhtml2/mod-list.html#s_listmodule
Perhaps we will be able to enjoy JavaScript-free, drop-down menus sometime in the future.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Simon</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P40/#48</link>
      <guid>http://www.alistapart.com/comments/taminglists/#48</guid>         
	  
      <description><![CDATA[Martijn ten Napel responded at http://www.alistapart.com/stories/taminglists/discuss/2/#ala-1019

Just to continue briefly with this "branch topic", Martijn says "Is well structured (X)HTML not one of the best ways to climb the rankings of the search engines? " I agree completely with this. A well structured document that is free of the bloat of presentational markup will probably get a higher ranking than documents that mix content and presentation because the information that is being sought will be more accessible to the search engine, as well as the user.

I believe that using list markup for creating navigation menus is good move, but it is also probably a good idea to move this markup to the end of a document and then use CSS-P to pull it back up to the top, if at all possible. That means that users with screen readers (and the like) need not be constantly wading through a navigation list everytime they click to a new page.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Randal Rust</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P40/#49</link>
      <guid>http://www.alistapart.com/comments/taminglists/#49</guid>         
	  
      <description><![CDATA[Mark mentioned that I started the thread at CSS-Discuss. I've been working with ULs for quite some time now to create menus. Mostly due to accessibility reasons. And one day, driving to work, listening to Ryan Adams, I thought to myself, "Why couldn't you make tabs with a UL and some CSS?" So I whipped something up, posted it to my site, http://www.r2communications.com/cssTests/tabbedMenu.html and posted it to the list. I was quite impressed in how people took it and ran with it. Great article, Mark.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Eugene</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P50/#50</link>
      <guid>http://www.alistapart.com/comments/taminglists/#50</guid>         
	  
      <description><![CDATA[Uwe von Loh wrote in http://www.alistapart.com/stories/taminglists/discuss/2/#ala-999

Definition lists are perfectly fine and not deprecated. However, I find that they're missing something semantically. You see, there no simple validating markup possible to semantically group dts with corresponding dds. you can't wrap a &lt;div class"definition-entry"&gt; around each pair of &lt;dt&gt;-&lt;dd&gt; since dls can only contain dts and dds.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Alexander Limi</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P50/#51</link>
      <guid>http://www.alistapart.com/comments/taminglists/#51</guid>         
	  
      <description><![CDATA[Great article, Mark.

I would just like to note that the Plone Content Management System &#40;which I have designed the CSS for&#41; - http://www.plone.org - has had the type of CSS-generated tabs you describe here for over one year now. I am not claiming I invented them (don't know when Randall came up with his, and the two are probably unrelated "discoveries"), but Plone has used these since July 2001.

Again, thanks for a great article, I really like the real-world examples, and you even taught me some new stuff I hadn't thought of :)

-- Alexander Limi
 http://plone.org]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Alexander Limi</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P50/#52</link>
      <guid>http://www.alistapart.com/comments/taminglists/#52</guid>         
	  
      <description><![CDATA[(that should of course be 'Randal', not 'Randall', sorry about that :)]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Alexander Limi</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P50/#53</link>
      <guid>http://www.alistapart.com/comments/taminglists/#53</guid>         
	  
      <description><![CDATA[A typical tab group in Plone looks like this:

 [url="http://plone.org" class="selected"]
 Welcome
 [/url]

 [url=" http://plone.org/news"]
 News
 [/url]

 [url=" http://plone.org/download"]
 Download
 [/url]

and the corresponding CSS is:

div.tabs &#123;
 border-collapse: collapse;
 border-bottom-color: #8CACBB;
 border-bottom-style: solid;
 border-bottom-width: 1px;
 padding: 0.5em 0em 0em 2em;
&#125;

div.tabs a &#123;
 /* The normal, unselected tabs. They are all links */
 border-color: #8CACBB;
 border-width: 1px; 
 border-style: solid solid none solid;
 color: #436976;
 margin-right: 0.5em;
 padding: 0em 2em;
&#125;

div.tabs a.selected &#123;
 /* The selected tab. There's only one of this */
 background-color: #DEE7EC;
 border: 1px solid #8CACBB;
 border-bottom: #DEE7EC 1px solid;
 color: #436976;
&#125;

and it ends up looking as the page on http://plone.org

I think it is a smart way of creating a tab row for section navigation, and it degrades nicely too. And look at how extremely simple and clean the HTML ends up being :)]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Alexander Limi</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P50/#54</link>
      <guid>http://www.alistapart.com/comments/taminglists/#54</guid>         
	  
      <description><![CDATA[I forgot the enclosing &lt;div class="tabs"&gt; around the above HTML, but you probably figured that out by yourselves :)]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Lee</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P50/#55</link>
      <guid>http://www.alistapart.com/comments/taminglists/#55</guid>         
	  
      <description><![CDATA[Hi - is it poss to get the links centered between the pipes? In the example they are set over slightly to the left.
Great stuff Mark
Thanks]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: kliertje</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P50/#56</link>
      <guid>http://www.alistapart.com/comments/taminglists/#56</guid>         
	  
      <description><![CDATA[thanks Mark, you css articles rock everytime]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by:</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P50/#57</link>
      <guid>http://www.alistapart.com/comments/taminglists/#57</guid>         
	  
      <description><![CDATA[. . . or do you need to use DHTML? Just curious, and learning slowly...]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Brainjar fan</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P50/#58</link>
      <guid>http://www.alistapart.com/comments/taminglists/#58</guid>         
	  
      <description><![CDATA[When there's this ( http://www.brainjar.com/dhtml/menubar/ ) CSS/JS menu that's fully cross-browser compatible?]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Leah</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P50/#59</link>
      <guid>http://www.alistapart.com/comments/taminglists/#59</guid>         
	  
      <description><![CDATA[Near the end of the article, Mark comments, "If you give the block an explicit width of 100%, then IE/Windows plays along. But doing this creates problems with IE5/Mac and Netscape/Mozilla." This is precisely the problem I've been wrestling with in my code. I have parent div wrappers at fixed widths, and inner divs with width set to 100% of immediate parent. In IE/Win AND IE5/Mac, everything lines up beautifully. In Netscape/Moz and Opera, it, of course, does not. I was wondering if anyone might be so kind as to point me to an article discussing this issue, and possible workarounds? I'd rather not resort to specifying all widths to the pixel, but will do whatever it takes to make the layout render readably in all major browsers.

Thanks for your time,
Leah]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Adrian Appleyard</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P60/#60</link>
      <guid>http://www.alistapart.com/comments/taminglists/#60</guid>         
	  
      <description><![CDATA[I'm sad to say that just about every example was broken in some way in IE 6 on Win2K.

Good article, but ahead of its time. Or behind the times. Who knows?]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Munchkin</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P60/#61</link>
      <guid>http://www.alistapart.com/comments/taminglists/#61</guid>         
	  
      <description><![CDATA[This aarticle was great - Ive been trying to find a decent way to display my links and yet still make them accessible - thanks for this! - I too noticed the whole shifting thing in IE6 - good job that i use netscape at home (6/7) its alot faster :D]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: shinya</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P60/#62</link>
      <guid>http://www.alistapart.com/comments/taminglists/#62</guid>         
	  
      <description><![CDATA[great article!

got a problem though...
when presenting a nested list as a vertical navigation menu
for example:
&lt;ul&gt;&lt;li&gt;[url="fruits"][/url]&lt;/li&gt;&lt;ul&gt;&lt;li&gt;[url="apple"][/url]&lt;/li&gt;...&lt;/ul&gt;...&lt;/ul&gt;
the nesting level indentation can be achieved by padding-left on li;
however, with these paddings, is it still possible to changing the
entire row background color on hover of the menu item li link?]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Louis St&#45;Amour</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P60/#63</link>
      <guid>http://www.alistapart.com/comments/taminglists/#63</guid>         
	  
      <description><![CDATA[Re: http://www.alistapart.com/stories/taminglists/discuss/2/#ala-1003
It did it on my machine with WinXP and IE6, but on Windows .net 2003 beta it doesn't--I think it has to do with WinXP themes support, actually.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: amanda</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P60/#64</link>
      <guid>http://www.alistapart.com/comments/taminglists/#64</guid>         
	  
      <description><![CDATA[A very nicely-written tutorial. Often it's hard to just find a tutorial on the subject that you want let alone find one that is so clear. Thanks, Mark! You did an excellent job.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Slime</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P60/#65</link>
      <guid>http://www.alistapart.com/comments/taminglists/#65</guid>         
	  
      <description><![CDATA[Shinya, I believe the example code you posted isn't valid HTML. UL's are not allowed directly within UL's; they must be within LI's. The only element allowed in a UL is an LI. UL's within UL's appear to be deprecated. http://www.w3.org/TR/html4/struct/lists.html#h-10.2]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: macg</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P60/#66</link>
      <guid>http://www.alistapart.com/comments/taminglists/#66</guid>         
	  
      <description><![CDATA[This was a good article, but unfortunately seemed to miss the one point I haven't been able to solve. Image bullets don't seem to align *horizontally* to the lists. Even in the 2 examples, you gave the images are too high (on OS X, IE5). Unfortunately, the behaviour seems to differ between IE and N (not sure about Windows).
Any ideas?]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Kevin W</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P60/#67</link>
      <guid>http://www.alistapart.com/comments/taminglists/#67</guid>         
	  
      <description><![CDATA[IMO, the inline lists one is unneccessary and the UL was not supposed to be used in this way.

Why? Well look at the list without the stylesheet. It doesn't look like as it was intended because now you have two paragraphs and a block list in between. Structually, it is a single paragraph, the list is contained inside (which is invalid HTML), and structually, it is an inline list (for which there is no HTML markup), not a block list like UL. So I say it's best to leave the list unmarked.

Also, by looking at the other lists without the stylesheet, you can form a clearer opinion about what's right and what's wrong. eg. For the breadcrumbs, the nested option is more "correct" than a single list IMO. When you look at it without styles, each item is indented more than the last, and looks well... right.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Dylan</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P60/#68</link>
      <guid>http://www.alistapart.com/comments/taminglists/#68</guid>         
	  
      <description><![CDATA[I love working with CSS and would gladly throw out tables for everything except tabular data (which this article even gives alternatives).. but in the end I can't. I panic. I seize up. I create the page, it looks great in the three browsers I have access to, but I can't trust that it will look good in all browsers. What can I do?

Do all you guys have a set of machines with different browser/OS/version combinations? How realistic is this for the average joe-blow?

I would love a service where I could provide my URL, select an environment and receive a screenshot in my email. Anyone know of something like this? Any help appreciated.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: JIm</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P60/#69</link>
      <guid>http://www.alistapart.com/comments/taminglists/#69</guid>         
	  
      <description><![CDATA[I liked this article, good job.

JimS.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: dave</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P70/#70</link>
      <guid>http://www.alistapart.com/comments/taminglists/#70</guid>         
	  
      <description><![CDATA[I resolved the problem of the intermitent line rendering in mozilla by moving the line
border-bottom: 1px solid #90bade;
from #button li to #button li a 
I did some other edits too that may have affected it, and I may have broken something else in attemting to fix it. But it does what I requre of it.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Jobeleca</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P70/#71</link>
      <guid>http://www.alistapart.com/comments/taminglists/#71</guid>         
	  
      <description><![CDATA[With regards to the horizontal lines only appearing every other button in Mozilla.

I copied the code and pasted it into a demo page, everything works properly there. I suspect that the code is in conflict with something on the ALA site.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Jobeleca</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P70/#72</link>
      <guid>http://www.alistapart.com/comments/taminglists/#72</guid>         
	  
      <description><![CDATA[I am curious as to whether or not the margins and padding of a box can be colored. If so, that would dramatically cut down on the number of nested div boxes needed for some simple effects.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Wolverine</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P70/#73</link>
      <guid>http://www.alistapart.com/comments/taminglists/#73</guid>         
	  
      <description><![CDATA[Here's another good CSS tutorial I found on the Internet:

http://www.digital-web.com/tutorials/tutorial_2002-06.shtml

It's interesting in that it uses an H1 tag for the name of the site
(like a classic old style page) but refines h1 to include an image rather than text... Sounds wonderful to me.

Alistapart folks - can you write a new tutorial based on the concept,
you know, advantages and disadvantages, how to go around them.
I like the h1 because it should help with the search engines... :)]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Alex Morales</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P70/#74</link>
      <guid>http://www.alistapart.com/comments/taminglists/#74</guid>         
	  
      <description><![CDATA[Ok, I've set up an inline list (unordered) as a menu across the top of my site.
I placed it in a table cell (using XHTML transitional), and gave it a background color. The list shows up right in the middle of the cell in Moz 1.1, but it floats to the top in IE6. I changed the cell's valign to bottom but it doesn't do anything. Has anybody else noticed this?]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: loki</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P70/#75</link>
      <guid>http://www.alistapart.com/comments/taminglists/#75</guid>         
	  
      <description><![CDATA[Excellent article, it certainly cleared up some design issues for me.

One more question:
How does one control the huge gap between the preceding text and the first list item in a basic page?

ei:
random text
&lt;ul&gt;
&lt;li&gt;item 1&lt;/li&gt;
&lt;li&gt;item 2&lt;/li&gt;
&lt;li&gt;item 3&lt;/li&gt;
&lt;/ul&gt;

any ideas?
Thanks again!]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Kevin W</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P70/#76</link>
      <guid>http://www.alistapart.com/comments/taminglists/#76</guid>         
	  
      <description><![CDATA[RE: loki, http://www.alistapart.com/stories/taminglists/discuss/3/#ala-1051

Loki, just use:
ul &#123; margin-top: 0;&#125;

You might also want to do margin-bottom: 0 as well.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Alex Morales</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P70/#77</link>
      <guid>http://www.alistapart.com/comments/taminglists/#77</guid>         
	  
      <description><![CDATA[Re http://www.alistapart.com/stories/taminglists/discuss/3/#ala-1050

Just figured it out, thanks anyways!]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Wolverine</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P70/#78</link>
      <guid>http://www.alistapart.com/comments/taminglists/#78</guid>         
	  
      <description><![CDATA[Can we have some article about Content Management Systems (like phpnuke, postnuke, etc) and CSS? These systems tend to be heavily tables based and it's a pain to get them to be pure CSS. Any hints and tips?]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: John Pitcairn</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P70/#79</link>
      <guid>http://www.alistapart.com/comments/taminglists/#79</guid>         
	  
      <description><![CDATA[So ... how to handle nested lists - is there an HTML-compliant way of doing this? A &lt;ul&gt;&lt;li&gt;&lt;ul&gt;&lt;li&gt;...&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt; nested inside &lt;UL&gt;&lt;LI&gt; isn't legal, is it?

Advice appreciated...]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: John Pitcairn</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P80/#80</link>
      <guid>http://www.alistapart.com/comments/taminglists/#80</guid>         
	  
      <description><![CDATA[My mistake ... &lt;ul&gt;&lt;li&gt;&lt;ul&gt;&lt;li&gt;...&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt; is OK.

&lt;ul&gt;&lt;li&gt;...&lt;/li&gt;&lt;ul&gt;&lt;li&gt;...&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt; isn't. Which is what I was trying to validate. Doh!]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: katie</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P80/#81</link>
      <guid>http://www.alistapart.com/comments/taminglists/#81</guid>         
	  
      <description><![CDATA[I'm a CSS newbie and I'm confused by the example's use of the "&gt;" character in the html&gt;body selector. When I check that CSS code through Web Design Group's [url="http://www.htmlhelp.com/cgi-bin/csscheck.cgi"]CSSCheck[/url], I get this error:

[blockquote]Selectors may contain only the characters A-Z, a-z, 0-9, Unicode 161-255, hyphens, or escaped Unicode characters as numeric codes.[/blockquote]]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Amarnath Santhanam</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P80/#82</link>
      <guid>http://www.alistapart.com/comments/taminglists/#82</guid>         
	  
      <description><![CDATA[Katie, The checker you used probably works with only CSS1 selectors. Compare CSS1 selectors at &lt;http://www.w3.org/TR/REC-CSS1#contextual-selectors&gt; with CSS2 selectors at &lt;http://www.w3.org/TR/REC-CSS2/selector.html&gt;. You might also find this page useful: &lt;http://gallery.theopalgroup.com/selectoracle&gt;. It translates CSS selectors into plain English (or Spanish). Amarnath]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Amarnath Santhanam</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P80/#83</link>
      <guid>http://www.alistapart.com/comments/taminglists/#83</guid>         
	  
      <description><![CDATA[Links messed up in previous post, sorry. http://www.w3.org/TR/REC-CSS1#contextual-selectors http://www.w3.org/TR/REC-CSS2/selector.html http://gallery.theopalgroup.com/selectoracle/ Amarnath]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Fletch</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P80/#84</link>
      <guid>http://www.alistapart.com/comments/taminglists/#84</guid>         
	  
      <description><![CDATA[After 100s of failed experiments I have given in a am looking for help.

Is it possible to use create something like this using UL and CSS.
http://adamfletcher.com/ul/]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Alex Hernandez</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P80/#85</link>
      <guid>http://www.alistapart.com/comments/taminglists/#85</guid>         
	  
      <description><![CDATA[This one is just to thank you for all that good stuff you always give us.

.::AleX::.
Dominocode.Net]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Big Gay Al</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P80/#86</link>
      <guid>http://www.alistapart.com/comments/taminglists/#86</guid>         
	  
      <description><![CDATA[An excellent article that was exactly what I was looking for. Very useful and simple to implement.

My only bitch would be Netscape 4.5 on the PC, it can't read it at all!]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Big Gay Al</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P80/#87</link>
      <guid>http://www.alistapart.com/comments/taminglists/#87</guid>         
	  
      <description><![CDATA[An excellent article that was exactly what I was looking for. Very useful and simple to implement.

My only bitch would be Netscape 4.5 on the PC, it can't read it at all!]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Andrej Golovachev</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P80/#88</link>
      <guid>http://www.alistapart.com/comments/taminglists/#88</guid>         
	  
      <description><![CDATA[I advice all developers to keep their site's support for Netscape 4.x at functionality level. E.g. you design may crash, but all functions will be accessible. That's how were do now in our studio]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Simon</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P80/#89</link>
      <guid>http://www.alistapart.com/comments/taminglists/#89</guid>         
	  
      <description><![CDATA[Hi

I'm following on in what I think is the spirit of the articles in using lists for nested navigation.

How do the panel suggest I deal with navigation nested more than one level deep? ie:

- Section 1
 - section 1: subsection a
 - section 1: subsection b
 - section 1: subsection c
- Section 2
 - section 2: subsection a
...etc

Assuming that the sections should be in list format, I tried the following and would appreciate thoughts, comments and feedback...

Validation chokes on this:
&lt;ul&gt;
&lt;li&gt;&lt;h2&gt;Main Administration&lt;/h2&gt;&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;[url="about:blank" target="_blank"]Summary Page[/url]&lt;/li&gt;
&lt;li&gt;[url="about:blank" target="_blank"]Change Main Password[/url]&lt;/li&gt;
&lt;li&gt;[url="about:blank" target="_blank"]Change MySQL Password[/url]&lt;/li&gt;
&lt;li&gt;[url="about:blank" target="_blank"]Log Out[/url]&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt;

because the nested UL is not contained within an LI tag.

However this validating code:

&lt;ul&gt;
&lt;li&gt;&lt;h2&gt;Main Administration&lt;/h2&gt;&lt;/li&gt;
&lt;li&gt;&lt;ul&gt;
&lt;li&gt;[url="about:blank" target="_blank"]Summary Page[/url]&lt;/li&gt;
&lt;li&gt;[url="about:blank" target="_blank"]Change Main Password[/url]&lt;/li&gt;
&lt;li&gt;[url="about:blank" target="_blank"]Change MySQL Password[/url]&lt;/li&gt;
&lt;li&gt;[url="about:blank" target="_blank"]Log Out[/url]&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

does not look right (when unstyled) with the floating bullet above the first list.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by:</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P90/#90</link>
      <guid>http://www.alistapart.com/comments/taminglists/#90</guid>         
	  
      <description><![CDATA[can someone please tell me the current background and link color being used on www.zeldman.com? the faq says that the stylesheets are freely available, but where are they located? thanks]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: MacOpera 6 Beta Tester</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P90/#91</link>
      <guid>http://www.alistapart.com/comments/taminglists/#91</guid>         
	  
      <description><![CDATA[testing... 1 2 3 4 5 6]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: grayrest</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P90/#92</link>
      <guid>http://www.alistapart.com/comments/taminglists/#92</guid>         
	  
      <description><![CDATA[Mozilla consistently has 1px rounding errors, as noted by Big John above. His page describes the problem well, the same thing can happen horizontally, as can be seen at http://www.meyerweb.com/eric/css/edge/boxpunch/demo.html (look for the punchout on the right, the black border sticks out 1px) and on my defunct mozilla news page at http://grayrest.com/moz when the browser width is about 1024, changing the width causes this to fluctuate so if you don't see it try changing the width of your browser.]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: MyDimension</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P90/#93</link>
      <guid>http://www.alistapart.com/comments/taminglists/#93</guid>         
	  
      <description><![CDATA[to the person who mentioned he had trouble getting list to be 14%:

i have made a list which i use for vertical navigation. the list resides in a sidebar that is 20% of the body. here is my CSS for my list:
ul.menu &#123;
 width: 90%;
 list-style: none;
 margin: 0px auto 0px auto;
 padding: 0px;
 border: none;
 text-align: center;
&#125;

ul.menu li &#123;
 text-align: left;
 margin-bottom: 2px;
&#125;

ul.menu li a &#123;
 display: block;
 padding: 0px 0px 0px 1.5em;
 margin: 0px;
 border-left: 2px solid;
 border-right: 2px solid;
 width: 100%;
&#125;

ul.menu li&gt;a &#123;
 width: auto;
&#125;]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: John Keller</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P90/#94</link>
      <guid>http://www.alistapart.com/comments/taminglists/#94</guid>         
	  
      <description><![CDATA[Ok, first, I'm really liking the list+css combo for nav. However, I am having issues with inline lists. The one that is really bugging me is that there is a space between the list items that I cannot seem to get rid of when the list is inline. 

For instance, I have a list I've set to inline with each item having a border. There is a space between each item, outside of the border, of a couple of pixels. Is there a standard work around for this that anyone knows of?]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Chris</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P90/#95</link>
      <guid>http://www.alistapart.com/comments/taminglists/#95</guid>         
	  
      <description><![CDATA[Love the article.
When supplying a custom image for the bullet via list-style-image or list style, is it possible to set the vertical alignment of that bullet?

Currently, the custom bullet bottom is aligned with the middle of the LI text. I would like to get them both valign=bottom.

Thanks,
-=Chris]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Simon</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P90/#96</link>
      <guid>http://www.alistapart.com/comments/taminglists/#96</guid>         
	  
      <description><![CDATA[Hooray!

Dave Lindquist solves the problem (see my post a couple above) very neatly, validly and accessible at http://www.gazingus.org/dhtml/?id=109

(and again) Hooray!]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by:</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P90/#97</link>
      <guid>http://www.alistapart.com/comments/taminglists/#97</guid>         
	  
      <description><![CDATA[Good eye opener]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by:</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P90/#98</link>
      <guid>http://www.alistapart.com/comments/taminglists/#98</guid>         
	  
      <description><![CDATA[testing 1 2 3 4 5 6]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Martin</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P90/#99</link>
      <guid>http://www.alistapart.com/comments/taminglists/#99</guid>         
	  
      <description><![CDATA[The nested list is logically a part of the first list item of the containing list. So the code you want is:

&lt;ul&gt; 
&lt;li&gt;&lt;h2&gt;Main Administration&lt;/h2&gt;
&lt;ul&gt; 
&lt;li&gt;[url="about:blank" target="_blank"]Summary Page[/url]&lt;/li&gt; 
&lt;li&gt;[url="about:blank" target="_blank"]Change Main Password[/url]&lt;/li&gt; 
&lt;li&gt;[url="about:blank" target="_blank"]Change MySQL Password[/url]&lt;/li&gt; 
&lt;li&gt;[url="about:blank" target="_blank"]Log Out[/url]&lt;/li&gt; 
&lt;/ul&gt;
&lt;/li&gt; 
&lt;/ul&gt;]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>

    <item>
      <title>Posted by: Arjen Meijer</title>
	  
	      <link>http://www.alistapart.com/comments/taminglists/P100/#100</link>
      <guid>http://www.alistapart.com/comments/taminglists/#100</guid>         
	  
      <description><![CDATA[I think the design is very smart, but has just one flaw.

We all have to write pages that look good in:
a. browsers without css support (e.g. ipaq)
b. browsers without javascript turned on (e.g. security bugs)
c. browsers without proper dom2 support (e.g. netscape 4.x)
d. browsers that support everything 
(For example, http://www.alforto.com, will display correct on all browsers.)

Well, this design brakes on browsers with javascript turned off. &lt;li&gt; elements can not be accessed because they are hidden in the css and there is no way to make these elements display.

Oke, change .menu&#123; display: hidden into block and problem disappears. But now script is not working right the first time. 
A related problem is that an &lt;ul&gt; has no meaning with javascript, but without it has. It will try to load a html page.

Has anybody a hint how to solve this problems?

Arjen]]></description>
      <dc:subject></dc:subject>
      <dc:date>2012-01-31T13:00:49+00:00</dc:date>
    </item>


    </channel>
</rss>
