How do I set vertical space between list items?

后端 未结 9 1169
暖寄归人
暖寄归人 2020-12-24 04:11

Within a

    element, clearly the vertical spacing between lines can be formatted with the line-height attribute.

    My question is, within a

9条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-24 04:51

    Old question but I think it lacked an answer. I would use an adjacent siblings selector. This way we only write "one" line of CSS and take into consideration the space at the end or beginning, which most of the answers lacks.

    li + li {
      margin-top: 10px;
    }
    

提交回复
热议问题