how do I get the bullet points of a
    to center with the text?

后端 未结 4 1177
野性不改
野性不改 2020-12-14 06:05

When I try to center a

    the text in the
  • centers but the bullet points stay on the far left of the page. Is there any way to ge
4条回答
  •  旧时难觅i
    2020-12-14 06:59

    Add list-style-position: inside to the ul element. (example)

    The default value for the list-style-position property is outside.

    ul {
        text-align: center;
        list-style-position: inside;
    }
    • one
    • two
    • three

    Another option (which yields slightly different results) would be to center the entire ul element:

    .parent {
      text-align: center;
    }
    .parent > ul {
      display: inline-block;
    }
    • one
    • two
    • three

提交回复
热议问题