码迷,mamicode.com
首页 > 其他好文 > 详细

重置 radio 和 checkbox 的样式

时间:2017-03-19 17:04:39      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:ext   line   技术分享   style   one   image   idt   order   isp   

代码:

<!doctype html>
<html>

    <head>
        <meta charset="utf-8">
        <title>选择框样式</title>
        <style>
            label {
                font-size: 12px;
                cursor: pointer;
            }
            
            label i {
                font-size: 12px;
                font-style: normal;
                display: inline-block;
                width: 12px;
                height: 12px;
                text-align: center;
                line-height: 12px;
                color: #fff;
                vertical-align: middle;
                margin: -2px 2px 1px 0px;
                border: #2489c5 1px solid;
            }
            
            input[type="checkbox"],
            input[type="radio"] {
                display: none;
            }
            
            input[type="radio"]+ i {
                border-radius: 7px;
            }
            
            input[type="checkbox"]:checked+ i,
            input[type="radio"]:checked+ i {
                background: #2489c5;
            }
            
            input[type="checkbox"]:disabled+ i,
            input[type="radio"]:disabled+ i {
                border-color: #ccc;
            }
            
            input[type="checkbox"]:checked:disabled+ i,
            input[type="radio"]:checked:disabled+ i {
                background: #ccc;
            }
        </style>
    </head>

    <body>
        <label><input type="checkbox"><i>?</i>复选框</label><br>
        <label><input type="checkbox" checked><i>?</i>复选框</label><br>
        <label><input type="checkbox" disabled><i>?</i>复选框禁用</label><br>
        <label><input type="checkbox" disabled checked><i>?</i>复选框禁用已选</label><br>
        <label><input type="radio" name="abc"><i>?</i>单选框</label><br>
        <label><input type="radio" name="abc" checked><i>?</i>单选框</label><br>
        <label><input type="radio" name="abc" disabled><i>?</i>单选框禁用</label><br>
        <label><input type="radio" name="def" disabled checked><i>?</i>单选框禁用已选</label><br>
    </body>

</html>

 

效果:

技术分享

重置 radio 和 checkbox 的样式

标签:ext   line   技术分享   style   one   image   idt   order   isp   

原文地址:http://www.cnblogs.com/crazycode2/p/6580773.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!