List Design
-
Hi all,
I’m trying to accomplish the following with nested list design:
A
B
1 2 3 4
D
EI have the following code below, but it’s not working. Can anyone help? Thanks a million in advance!!
<html>
<style>
#object ul {width:100%; padding: 0 0 10px 0; border: solid 0px #000000; list-style:none; }
#object li {border:solid 0px #000000; width:100%; padding-bottom:10px; float:left; }
#object ul ul li {display:inline; margin-left:10px;}
</style>
<body>
<div id=”object”>- A
- 1
- 2
- 3
- B
- C
</div>
</body>
</html>
- The topic ‘List Design’ is closed to new replies.