I am working on a CSS drop-down for a menu and having some basic HTML complications.
So lets say I have this list:
------------------------------------
-Male
-John-18yrs
-5'10"
-Tim
-Steve-21yrs
-6'1"
-Female
-Molly-20yrs
-5'3"
-Kimberly
-Mary
-------------------------------------
Code:
div#dropMenu ul.level1
succesfully gives me first level: Male, Female
Code:
div#dropMenu li:first-child ul.level2
successfully gives me John, Tim, Steve
Code:
div#dropMenu li:last-child ul.level2
successfully gives me Molly, Kimberly, Mary
I need to pin point to 18yrs (under John) and pin point to 5'3" (under molly) using last-childs and first -childs.