RichieW13
10-20-2010, 09:50 PM
I have a list on this page: http://thebannerisup.district37ama.org/overalls/overall-main-new.shtml
I want to create space between the names and the numbers, so that the numbers all line up in a column to the right of the names.
For some reason I thought the <span> tag was supposed to solve the problem.
How do I create an ordered list, where there is essentially a second column spaced out to the right?
<body>
<h><u>This is a list, but I want the numbers spaced out to the right.</u></h>
<ol>
<li>Dan Smith<span>57</span></li>
<li>J.N. Roberts<span>33</span></li>
<li>Larry Bergquist<span>27</span></li>
<li>Mike Patrick<span>27</span></li>
<li>Mike Childress<span>25</span></li>
<li>Danny Hamel<span>25</span></li>
<li>Paul Krause <span>22</span></li>
</ol>
<h><u>This is a table, but I want the list numbers on the left.</u></h>
<table>
<tr><td>Dan Smith</td><td>57</td></tr>
<tr><td>J.N. Roberts</td><td>33</td></tr>
<tr><td>Larry Bergquist</td><td>27</td></tr>
<tr><td>Mike Patrick</td><td>27</td></tr>
<tr><td>Mike Childress</td><td>25</td></tr>
<tr><td>Danny Hamel</td><td>25</td></tr>
<tr><td>Paul Krause </td><td>22</td></tr>
</table>
</body>
I want to create space between the names and the numbers, so that the numbers all line up in a column to the right of the names.
For some reason I thought the <span> tag was supposed to solve the problem.
How do I create an ordered list, where there is essentially a second column spaced out to the right?
<body>
<h><u>This is a list, but I want the numbers spaced out to the right.</u></h>
<ol>
<li>Dan Smith<span>57</span></li>
<li>J.N. Roberts<span>33</span></li>
<li>Larry Bergquist<span>27</span></li>
<li>Mike Patrick<span>27</span></li>
<li>Mike Childress<span>25</span></li>
<li>Danny Hamel<span>25</span></li>
<li>Paul Krause <span>22</span></li>
</ol>
<h><u>This is a table, but I want the list numbers on the left.</u></h>
<table>
<tr><td>Dan Smith</td><td>57</td></tr>
<tr><td>J.N. Roberts</td><td>33</td></tr>
<tr><td>Larry Bergquist</td><td>27</td></tr>
<tr><td>Mike Patrick</td><td>27</td></tr>
<tr><td>Mike Childress</td><td>25</td></tr>
<tr><td>Danny Hamel</td><td>25</td></tr>
<tr><td>Paul Krause </td><td>22</td></tr>
</table>
</body>