I'm trying to create what is essentially a numbered list but I want to be able to independently manipulate the number and the associate hyperlink. I also need the link text to stay aligned horizontally no matter how big the line number gets.

I've got something similar to this:

<ul>
 <li>1.</li>
 <li><a href="">Text1</a>

 <li>2.</li>
 <li><a href="">Text2</a>

.
.
.

 <li>1000.</li>
 <li><a href="">Text1000</a>
</ul>


I've tried every combination of float, display, inline, etc. and I can't get it to look like this:


1.     Item1
2.     Item2
.
.
1000.  Item1000


Its embarrassing, I know I've done this in some fashion before but its been a while since I've played with CSS so I've gotten rusty. Is there a simple solution someone could clue me in on?


Thanks - Tod
______________________________________________________________________
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to