How to center ordered list number in HTML

前端 未结 4 1435
误落风尘
误落风尘 2021-01-07 17:15

I am currently learning HTML programming. I have a problem:

If I put like this:



HEADLINE
4条回答
  •  渐次进展
    2021-01-07 17:58

    You are aligning texts in the body.

    Try this:

    .center {
      text-align: center;
      list-style-position: inside;
    }

    HEADLINE

    1. First Item

提交回复
热议问题