how to display list text in centre code example
Example 1: center li in ul css
.list-wrapper {
text-align: -webkit-center;
}
.list-wrapper ul {
display:block;
}
Example 2: center unordered list html
ul {
display: table;
margin: 0 auto;
}