Remove Extra Space at Bottom of HTML List Item

前端 未结 6 681
刺人心
刺人心 2020-12-31 05:20

Is there any way to remove the extra space displayed at the bottom of an HTML List Item tag without setting a fixed height on the list item? I.e. I would like the li

6条回答
  •  离开以前
    2020-12-31 05:53

    Set line-height:0; on the LI

    li {
      line-height: 0;
    }
    

    Here's a jsfiddle to prove that it works - http://jsfiddle.net/jm9Tj/

提交回复
热议问题