0
Lists Don't Align To Center?
Why won't my ordered list or unordered list align to the center!? I have it so that the styling in the header says to make it text-align to center but it doesnt! Help would be very appreciated!
3 Answers
+ 3
#listWrapper {
text-align:center;
}
#listWrapper ol {
display:inline-block;
}
<div id="listWrapper">
<ul>
<li>item</li>
<li>item</li>
<li>item</li>
</ul>
</div>
0
You Need to Put those Lists into a Table and Align that table Accordingly.