Web Hosting Talk







View Full Version : Css Q


D2War
09-08-2008, 02:50 PM
In a Vertical CSS Nav section using Unordered Lists and List Items, how can i vertically position text in each li with a set height of 60px? The Text it dynamically generated and can be between 1-2 lines high. Can't use line-height or the image hack.

foobic
09-08-2008, 08:57 PM
Have you tried something like:
ul#nav li {
display: block;
height: 60px;
}