Radio/checkbox alignment in HTML/CSS

前端 未结 13 943
不知归路
不知归路 2020-12-04 08:08

What is the cleanest way to align properly radio buttons / checkboxes with text? The only reliable solution which I have been using so far is table based:

&l         


        
相关标签:
13条回答
  • 2020-12-04 09:01

    I found the best and easiest way to do it is this one because you don't need to add labels, divs or whatsoever.

    input { vertical-align: middle; margin-top: -1px;}

    0 讨论(0)
提交回复
热议问题