How to align checkboxes and their labels consistently cross-browsers

前端 未结 30 1795
有刺的猬
有刺的猬 2020-11-22 05:56

This is one of the minor CSS problems that plagues me constantly. How do folks around Stack Overflow vertically align checkboxes and

30条回答
  •  盖世英雄少女心
    2020-11-22 06:13

    I usually use line height in order to adjust the vertical position of my static text:

    label {
      line-height: 18px;
    }
    input {
      width: 13px;
      height: 18px;
      font-size: 12px;
      line-height: 12px;
    }

    Hope that helps.

提交回复
热议问题