Horje
center li in ul css Code Example
css ul to center
ul {
  justify-content: center;
  display: flex;
}
center li in ul css
.list-wrapper {
   text-align: -webkit-center;
}
.list-wrapper ul {
    display:block;
}   
center ul
dropdwon-menu {
	left: 50%;
	transform: translateX(-50%);
}
how to align list to the centre in css
<div id="menu-centered">
     <ul>
          <li><a rel="nofollow" href="">My first item</a></li>
          <li><a rel="nofollow" href="">My second item</a></li>
          <li><a rel="nofollow" href="">My third item</a></li>
          <li><a rel="nofollow" href="">My fourth item</a></li>
          <li><a rel="nofollow" href="">My fifth item</a></li>
     </ul>
</div>




Css

Related
css hide timeline Code Example css hide timeline Code Example
html5 video hide timeline Code Example html5 video hide timeline Code Example
text align left in span Code Example text align left in span Code Example
scroll bottom css Code Example scroll bottom css Code Example
text overflow ellipsis two lines Code Example text overflow ellipsis two lines Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10