好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

自定义input[type="radio"]的样式

对于表单,input[type="radio"] 的样式总是不那么友好,在不同的浏览器中表现不一。

为了最大程度的显示出它们的差别,并且为了好看,首先定义了一些样式:

 html:
    form   action  =""  > 
       div   class  ="sex"  > 
           div   class  ="female"  > 
               label   for  ="female"  > 女   label  > 
               input   type  ="radio"   name  ="sex"   id  ="female"  > 
           div  > 
           div   class  ="male"  > 
               label   for  ="male"  > 男   label  > 
               input   type  ="radio"   name  ="sex"   id  ="male"  > 
           div  > 
       div  > 
   form  >  

查看更多关于自定义input[type="radio"]的样式的详细内容...

  阅读:38次