Horje
how to align list to the centre in css Code Example
center ul
dropdwon-menu {
	left: 50%;
	transform: translateX(-50%);
}
how to center a list in html
/* Either center the list directly or center the parent element */

ul {
 text-align: center;
}

/* OR */

div .list {
 text-align: center;
}
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
width in css Code Example width in css Code Example
mat slide toggle iverted Code Example mat slide toggle iverted Code Example
background image in css is not working Code Example background image in css is not working Code Example
css syntax examples Code Example css syntax examples Code Example
vw css Code Example vw css Code Example

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