Radio/checkbox alignment in HTML/CSS

前端 未结 13 960
不知归路
不知归路 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 08:54

    If your label is long and goes on multiple rows setting the width and display:inline-block will help.

    .form-field * {
      vertical-align: middle;
    }
    .form-field input {
      clear:left;
    }
    .form-field label { 
      width:200px;
      display:inline-block;
    }
    
    

提交回复
热议问题