html lists?
Every time I create a list with <ul>s embedded in other <ul>s there's a huge gap (like a line break), between the <li> in the first <ul> and the first <li> in the second <ul>...how do I make this go away? I remember reading somewhere you could do that but I can't remember where.
Public Comments
- You could use the depricated COMPACT parameter to the UL tag, but most people don't use that any more. Is your nesting like the following: <ul> <li>List item 1.0</li> <li>List item 2.0</li> <ul><li>list item 2.1</li> <li>list item 2.2</li> </ul> <li>list item 3.0</li> </ul> The above for me shows nicely without gaps in a couple of different browsers.
Powered by Yahoo! Answers