Should I put input elements inside a label element?

前端 未结 14 1986
长情又很酷
长情又很酷 2020-11-22 07:24

Is there a best practice concerning the nesting of label and input HTML elements?

classic way:



        
14条回答
  •  滥情空心
    2020-11-22 07:48

    I prefer

    
    
    
    

    over

    
    
    
    
    
    

    Mainly because it makes the HTML more readable. And I actually think my first example is easier to style with CSS, as CSS works very well with nested elements.

    But it's a matter of taste I suppose.


    If you need more styling options, add a span tag.

    
    
    
    

    Code still looks better in my opinion.

提交回复
热议问题