好得很程序员自学网

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

HTML的checkbox和radio的美化_html/css_WEB-ITnose

checkbox和radio的美化

checkbox:

     input[type="checkbox"]    {        display: none;    }        input[type="checkbox"] + label        {            display: inline-block;            position: relative;            border: solid 2px #99a1a7;            width: 35px;            height: 35px;            line-height: 35px;            border-radius: 4px;        }        input[type="checkbox"]:checked + label:after        {            content: '\2714';            font-size: 25px;            color: #99a1a7;            width: 35px;            height: 35px;            line-height: 35px;            position: absolute;            text-align: center;            background-color: #e9ecee;        }    .tab    {        margin-top: 20px;        margin-bottom: 20px;        width: 100%;    }        .tab td        {            border: solid 1px #f99;            font-size: 25px;            line-height: 39px;        }                            

查看更多关于HTML的checkbox和radio的美化_html/css_WEB-ITnose的详细内容...

  阅读:33次