Answers for "center text in list item"

CSS
0

how to align text inside an li to its center

li {
    display: flex;
    flex-direction: row;
    align-items: center;
}
Posted by: Guest on April-08-2021
3

how to align list to the centre in css

<div id="menu-centered">
     <ul>
          <li><a href="">My first item</a></li>
          <li><a href="">My second item</a></li>
          <li><a href="">My third item</a></li>
          <li><a href="">My fourth item</a></li>
          <li><a href="">My fifth item</a></li>
     </ul>
</div>
Posted by: Guest on May-21-2020

Browse Popular Code Answers by Language