Answers for "css ul to center"

CSS
1

css ul to center

ul {
  justify-content: center;
  display: flex;
}
Posted by: Guest on October-26-2020
1

center ul

dropdwon-menu {
	left: 50%;
	transform: translateX(-50%);
}
Posted by: Guest on May-21-2020
0

how to align list to the centre in css

<ul class="text-center" style="list-style-position: inside">
    <li>Born</li>
</ul>
Posted by: Guest on May-21-2020
0

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