Forum Moderators: open
If I have an ordered or unordered list that is centered, the list is going to look skewed, because each item in the list will be centered. The only way that I know how to fix this is to put the whole thing into a table:
<table><tr><td>
<ul>
<li>one thing</li>
<li>another thing</li>
</ul>
</td></tr></table>
This just *feels* kludgey. Is there a better way?
<div>
<ul>
<li>one thing</li>
<li>another thing</li>
</ul>
</div>
That doesn't have any effect.
one thing<br>
another thing<br>
one more thing
which looks the same but cleaner, as for the indenting or centering simply wrap it in a nice style like:
<p class="listy">
one thing<br>
another thing<br>
one more thing
</p>
where 'listy'" is set up with whatever font and margin you require