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

单选多选样式写法

时间:2018-12-14 13:06:42      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:cal   掘金   radius   center   label   单选按钮   checked   line   border   

动画多选样式

// html
<div id="box">
    <input type="checkbox" id="check" name="check" />
    <label for="check">Checkbox</label>
</div>

// css
input[type=checkbox]+label:before {
    height: 16px;
    line-height: 16px;
    width: 16px;
    border: 1px solid #000;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-right: 5px;
    content: "\2713";
    color: transparent;
    transition: color ease .3s;
}
input[type=checkbox]:checked+label:before {
    color: #000;
}

单选按钮样式

// html
<div id="box">
    <input type="radio" id="check" name="check" />
    <label for="check">Checkbox</label>
</div>
// css
input[type=radio] {
    display: none;
}
input[type=radio]+label:before {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 14px;
    text-align: center;
    vertical-align: top;
    margin-right: 20px;
    content: "\26AB";
    border: 1px solid #000;
    border-radius: 50%;
    font-size: 0;
    transition: font-size ease .3s;
}
input[type=radio]:checked+label:before {
    font-size: 12px;
}

参考

掘金-22个必备的CSS小技巧

单选多选样式写法

标签:cal   掘金   radius   center   label   单选按钮   checked   line   border   

原文地址:https://www.cnblogs.com/bonly-ge/p/10118106.html

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