br line-height in safari and chrome leaving gap

前端 未结 5 580
野性不改
野性不改 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 11:48

    This worked for me for both firefox and chrome. Got the idea from @SamuelC and @anushr.

    br{ 
        display: block;
        line-height: 0.1; 
        content: " ";
    }
    

提交回复
热议问题