I have the following structure inside my nav:
ul > ((li>a) * 2)
the css for the elements is:
ul {height: 29px; list-style: none;}
li {
display: inline-block;
height: 23px;
zoom: 1;
*display: inline;
}
How do I vertically center the li's within the ul?
Thanks!
EDIT: the a element is a child of the li element.