Line height default value if font size is 100%

后端 未结 5 1717
故里飘歌
故里飘歌 2021-01-03 21:02

I must override the body style of my page:

body{
    font-size:14px;
    line-height:20px;
}

override:

body{
    font-size:         


        
5条回答
  •  旧时难觅i
    2021-01-03 21:10

    You can use relative line-height

    If your original sizes have been font-size:14px; and line-height:20px; and you want to keep the same proportions you can use 1 * (20/14) em so line-height:1.42em;

    body{
        font-size:100%;
        line-height:1.42em;
    }
    

提交回复
热议问题