Hi

the * selector is known as the Universal Selector

It basically refers to any element within the relative position.

So writing:

* {
margin: 0;
}

would apply a margin of 0 to every element on the page.

writing

#content * {
}

would apply to ANY descendant of element with id 'content'

-----

In this case, ul.dropdown-vertical *.dir would apply to every element
that is a descendant of the list 'dropdown-vertical' with a class
'dir'

Hope that helps?

--~--~---------~--~----~------------~-------~--~----~
--
You received this because you are subscribed to the "Design the Web with CSS" 
at Google groups.
To post: [email protected]
To unsubscribe: [email protected]
-~----------~----~----~----~------~----~------~--~---

Reply via email to