How to align checkboxes and their labels consistently cross-browsers

前端 未结 30 1785
有刺的猬
有刺的猬 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:10

    Use simply vertical-align: sub, as pokrishka already suggested.

    Fiddle

    HTML Code:

    CSS Code:

    .checkboxes input {
        vertical-align: sub;
    }
    

提交回复
热议问题