I want to make a footer for mobile resolution. If there is only one element in one row I want to center it - can I achieve this using ul li
? My last element is being aligned to left, which I don't want, should I use something else than ul li?
.body {
max-width: 320px;
width: 100%;
background: red;
}
ul {
column-count: 2;
padding: 0;
}
ul li {
list-style: none;
text-align: center;
}
<div class="body">
<ul>
<li>testdwad dada ad ad </li>
<li>test</li>
<li>test</li>
<li>test</li>
<li>test</li>
</ul>
</div>