Radio/checkbox alignment in HTML/CSS

前端 未结 13 955
不知归路
不知归路 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:00

    This is a simple solution which solved the problem for me:

    label 
    {
    
    /* for firefox */
    vertical-align:middle; 
    
    /*for internet explorer */
    *bottom:3px;
    *position:relative; 
    
    padding-bottom:7px; 
    
    }
    

提交回复
热议问题