When you hit the reply button, your email client indicates what email
the reply is to. Many people have their email clients configured to
display that relationship, so your message is marked as being a
continuation of a discussion about "Writing authoritative content".
Please don't hijack threads - use the New Message feature if your email
client for new messages.

kevin mcmonagle wrote:
> How come you cant change the list-type from none to circle(or anything
> else) on li a:hover?

The list-style appears on the <li> element. The selector "li a:hover"
matches the <a> element, which isn't display: list-item and so can't
have a list marker. Additionally, CSS provides no way to select an
element based on its children, so you can't match the list item based on
the hover state of a link inside it.

You could match li:hover, but that won't work in IE7 in Quirks mode or
IE6 at all.


-- 
David Dorward                               <http://dorward.me.uk/>


*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************

Reply via email to