Why isn't the CSS property 'line-height' letting me make tight line-spaces in Chrome?

后端 未结 4 1746
刺人心
刺人心 2021-02-05 02:27

I have a paragraph tag that I defined elsewhere with a line height of 15px, and I have another paragraph tag further down the page where I want to make the line height around 10

4条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-05 03:08

    I ran into the same issue, worked well with:

    .element { display: block; line-height: 1.2; }
    

提交回复
热议问题