br line-height in safari and chrome leaving gap

前端 未结 5 572
野性不改
野性不改 2021-01-02 11:38

In my HTML I have a

, and inside the
I need different vertical spacing between lines of text. I\'m achieving this by using
5条回答
  •  情话喂你
    2021-01-02 12:03

    This worked on Chrome (the content attribute did the trick):

    br {
      content: " ";
      display: block;
      margin: 1em;
    }
    

提交回复
热议问题