How to align checkboxes and their labels consistently cross-browsers

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

    The only perfectly working solution for me is:

    input[type=checkbox], input[type=radio] {
        vertical-align: -2px;
        margin: 0;
        padding: 0;
    }
    

    Tested today in Chrome, Firefox, Opera, IE 7 and 8. Example: Fiddle

提交回复
热议问题