Indent List in HTML and CSS

后端 未结 7 1546
抹茶落季
抹茶落季 2021-02-05 04:17

I\'m new to CSS and working with list. I tried using one of the code I saw on w3schools which shows how to indent lists:




A n

7条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-05 04:52

    li {
      padding-left: 30px;
    }

    Some text to show left edge of container.

    • List item
    The above will add 30px of space between the bullet or number and your text.

    li {
      margin-left: 30px;
    }

    Some text to show left edge of container.

    • List item
    The above will add 30px of space between the bullet or number and the left edge of the container.

提交回复
热议问题