I am trying to centrally align the ul li
text inside the main div
. Exactly text align center
the text. I don't want to do it with the margin
. What is an elegant way?
I need to keep the display table setup for vertical alignment.
MY HTML:
<div class="main-div">
<div>
<a class="navbar-brand" href="#">
Anchor
</a>
</div>
<ul>
<li>
<span>Center this</span>
</li>
</ul>
</div>
CSS:
.main-div {
width: 100%;
display: table;
}
ul {
display: table-cell;
vertical-align: middle;
}
li {
list-style: none;
}
CodePen is here