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

后端 未结 4 1116
野性不改
野性不改 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条回答
  •  南方客
    南方客 (楼主)
    2020-12-14 06:38

    You can do that with list-style-position: inside; on the ul element :

    ul {
        list-style-position: inside;
    }
    

    See working fiddle

提交回复
热议问题