最新消息:觉得本站不错的话 记得收藏哦 博客内某些功能仅供测试 讨论群:135931704 快养不起小站了 各位有闲钱就打赏下把 My Email weicots#gmail.com Please replace # with @

修改 或去除html中的radio 单选按钮中的样式

FEE ajiang-tuzi 6518浏览

效果

left_bar

测试代码




<style>
    .weicot_radio{
        float:left;
        margin-top:0.5em;
        margin-right:0.5em;
    }
    .weicot_radio input[type="radio"]{
        display:none;
    }
    .weicot_radio input[type="radio"] + label{
        padding:0.2em 1em;
        border:1px solid #CCCCCC;
      /*  border-radius:0.5em;*/
        color:#999;
    }
    .weicot_radio input[type="radio"]:checked + label {
        padding: 0.2em 1em;
        border: 1px solid #3399CC;
       /* border-radius: 0.5em;*/
        background: #3399CC;
        color: #FFFFFF;

</style>





<form class="weicot_radio">
<input type="radio" name="p_1" value="01" id="p_1" ><label for="p_1">p_1</label>
<input type="radio" name="p_1" value="02" id="p_2" ><label for="p_2">p_2</label>
<input type="radio" name="p_2" value="a1" id="p_a" ><label for="p_a">p_a</label>
</form>



left_nav

HTML <label> 标签的 for 属性</label>

HTML <label> 标签</label>
实例
带有两个输入字段和相关标记的简单 HTML 表单:




<form>
  <label for="male">Male</label>
  <input type="radio" name="sex" id="male" />

  <label for="female">Female</label>
  <input type="radio" name="sex" id="female" />
</form>



定义和用法
for 属性规定 label 与哪个表单元素绑定。
隐式和显式的联系
标记通常以下面两种方式中的一种来和表单控件相联系:将表单控件作为标记标签的内容,这样的就是隐式形式,或者为

</label>
<label for="SSN">Social Security Number:</label>
<input type="text" name="SocSecNum" id="SSn" />

隐式的联系:

<label>Date of Birth: <input type="text" name="DofB" /></label>

第一个标记是以显式形式将文本 “Social Security Number:” 和表单的社会安全号码的文本输入控件 (“SocSecNum”) 联系起来,它的 for 属性的值和控件的 id 一样,都是 SSN。第二个标记 (“Date of Birth:”) 不需要 for 属性,它的相关控件也不需要 id 属性,它们是通过在 ?<label>标签中放入 ?<input type=”text” />?标签来隐式地连接起来的。

转载请注明:(●--●) Hello.My Weicot » 修改 或去除html中的radio 单选按钮中的样式

蜀ICP备15020253号-1