[css-d] Specifying a width for list items

2005-05-18 Thread Mike Stickel
I'm working on a new project and the horizontal navigation is a pretty strict size - each item should be about 88px wide so that the navigation fills the width of the page. I thought using a list would work but I can't figure out how to specify the width for list items and I'm hoping

Re: [css-d] Specifying a width for list items

2005-05-18 Thread jack fredricks
you can't give a width to an inline element like an a. Turn your as into block elements using a { display:block; width:auto; } li { width:88px } that should do the trick On 5/19/05, Mike Stickel [EMAIL PROTECTED] wrote: I'm working on a new project and the horizontal navigation

Re: [css-d] Specifying a width for list items

2005-05-18 Thread Mike Stickel
Maybe I'm not fully understanding the comment but I'm not using images for the menu, just boxes of text. I'll probably go the float route until I have more time to fool around with different methods. On May 18, 2005, at 6:23 PM, Lorin Rivers wrote: On May 18, 2005, at 5:36 PM, Mike Stickel