Answers for "how to center a horizontal list in css"

CSS
10

css align ul li horizontal

ul li{
  	display: inline-block;
}
Posted by: Guest on May-02-2021
0

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;
}
Posted by: Guest on February-25-2021

Browse Popular Code Answers by Language