Line height default value if font size is 100%

后端 未结 5 1733
故里飘歌
故里飘歌 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条回答
  •  不知归路
    2021-01-03 21:26

    The default line-height is normal, so use:

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

    FYI, you can confirm this if you have Chrome by opening up a website, inspecting the element and viewing the inherited computed styles.

提交回复
热议问题