Discuss: CSS Design: Taming Lists
by Mark Newhouse
- Editorial Comments
82 CSS2 Selectors
Katie, The checker you used probably works with only CSS1 selectors. Compare CSS1 selectors at <http://www.w3.org/TR/REC-CSS1#contextual-selectors> with CSS2 selectors at <http://www.w3.org/TR/REC-CSS2/selector.html>. You might also find this page useful: <http://gallery.theopalgroup.com/selectoracle>. It translates CSS selectors into plain English (or Spanish). Amarnath
posted at 12:45 pm on October 15, 2002 by Amarnath Santhanam
83 Ack, Eaten Links
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
posted at 12:48 pm on October 15, 2002 by Amarnath Santhanam
84 inline ul
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/
posted at 01:00 pm on October 15, 2002 by Fletch
85 Just Thanks
This one is just to thank you for all that good stuff you always give us.
.::AleX::.
Dominocode.Net
posted at 09:03 pm on October 15, 2002 by Alex Hernandez
86 Netscape 4.5
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!
posted at 08:07 pm on October 23, 2002 by Big Gay Al
87 Netscape 4.5
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!
posted at 08:08 pm on October 23, 2002 by Big Gay Al
88 Netscape as a corporate bitch
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
posted at 01:47 am on October 24, 2002 by Andrej Golovachev
89 Nested lists
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:
<ul>
<li><h2>Main Administration</h2></li>
<ul>
<li>[url=“about:blank” target=”_blank”]Summary Page[/url]</li>
<li>[url=“about:blank” target=”_blank”]Change Main Password[/url]</li>
<li>[url=“about:blank” target=”_blank”]Change MySQL Password[/url]</li>
<li>[url=“about:blank” target=”_blank”]Log Out[/url]</li>
</ul>
</ul>
because the nested UL is not contained within an LI tag.
However this validating code:
<ul>
<li><h2>Main Administration</h2></li>
<li><ul>
<li>[url=“about:blank” target=”_blank”]Summary Page[/url]</li>
<li>[url=“about:blank” target=”_blank”]Change Main Password[/url]</li>
<li>[url=“about:blank” target=”_blank”]Change MySQL Password[/url]</li>
<li>[url=“about:blank” target=”_blank”]Log Out[/url]</li>
</ul></li>
</ul>
does not look right (when unstyled) with the floating bullet above the first list.
posted at 09:58 am on October 24, 2002 by Simon
90 Completely off-topic
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
posted at 09:39 am on October 25, 2002 by
Discussion Closed
New comments are not being accepted, but you are welcome to explore what people said before we closed the door.
Got something to say?
Discuss this article. We reserve the right to delete flames, trolls, and wood nymphs.
Create a new account or sign in below if you’d like to leave a comment.
Subscribe to this article's comments: RSS (what’s this?)






81 ">" character in selector
I’m a CSS newbie and I’m confused by the example’s use of the “>” character in the html>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]
posted at 09:20 am on October 15, 2002 by katie