Indent List in HTML and CSS

后端 未结 7 1480
抹茶落季
抹茶落季 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 05:03

    Yes, simply use something like:

    ul {
      padding-left: 10px;
    }
    

    And it will bump each successive ul by 10 pixels.

    Working jsFiddle

提交回复
热议问题