Home › Forums › CSS › [Solved] Centering › Reply To: [Solved] Centering
July 20, 2014 at 11:38 am
#175926
Participant
In your CSS, set:
body {
text-align center;
}
#mn ul {
display: inline-block;
}
Also, your HTML is invalid, you shouldn’t put an a
around your li
, but rather put it inside like so:
<ul>
<li>
<a href=#>stuff</a>
</li>
</ul>